Skip to content

Commit

Permalink
Minor fix to error message (#841)
Browse files Browse the repository at this point in the history
Was not properly adding space, as such:

```
java.lang.IllegalStateException: Was not able to discover any classes for archives=testsuite/test/example/example.jarprefixes=Set(), suffixes=Set(Test)
```
  • Loading branch information
Mantas Sakalauskas authored and johnynek committed Sep 3, 2019
1 parent 5261499 commit 3edf15d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ object PrefixSuffixTestDiscoveringSuite {
val classes = archives.flatMap(discoverClassesIn)
if (classes.isEmpty)
throw new IllegalStateException("Was not able to discover any classes " +
s"for archives=${archives.mkString(",")}" +
s"for archives=${archives.mkString(",")}, " +
s"prefixes=$prefixes, " +
s"suffixes=$suffixes")
classes
Expand Down

0 comments on commit 3edf15d

Please sign in to comment.