Skip to content

Commit 3edf15d

Browse files
Mantas Sakalauskasjohnynek
Mantas Sakalauskas
authored andcommitted
Minor fix to error message (#841)
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) ```
1 parent 5261499 commit 3edf15d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java/io/bazel/rulesscala/test_discovery/DiscoveredTestSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ object PrefixSuffixTestDiscoveringSuite {
4949
val classes = archives.flatMap(discoverClassesIn)
5050
if (classes.isEmpty)
5151
throw new IllegalStateException("Was not able to discover any classes " +
52-
s"for archives=${archives.mkString(",")}" +
52+
s"for archives=${archives.mkString(",")}, " +
5353
s"prefixes=$prefixes, " +
5454
s"suffixes=$suffixes")
5555
classes

0 commit comments

Comments
 (0)