We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 955b04a commit ff95503Copy full SHA for ff95503
test/test/CompilerTest.scala
@@ -197,7 +197,7 @@ abstract class CompilerTest {
197
assert(errorLines.length == nerrors, s"Not enough errors recorded.")
198
199
val allFiles = (allArgs filter {
200
- case arg => arg.endsWith(".scala") || arg.endsWith(".java")
+ arg => !arg.startsWith("-") && (arg.endsWith(".scala") || arg.endsWith(".java"))
201
}).toList
202
val expectedErrorsPerFile = allFiles.map(getErrors(_))
203
0 commit comments