Skip to content

Commit ea1ee47

Browse files
committed
Merge pull request #965 from reactormonk/master
Fixed != comparison
2 parents ea1373b + 8a438f2 commit ea1ee47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/dotc/tests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ class tests extends CompilerTest {
175175
val stdlibFiles = Source.fromFile("./test/dotc/scala-collections.whitelist", "UTF8").getLines()
176176
.map(_.trim) // allow identation
177177
.filter(!_.startsWith("#")) // allow comment lines prefixed by #
178-
.map(_.takeWhile(_ != "#").trim) // allow comments in the end of line
178+
.map(_.takeWhile(_ != '#').trim) // allow comments in the end of line
179179
.filter(_.nonEmpty)
180180
.toList
181181

0 commit comments

Comments
 (0)