We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f409c88 + b99f41c commit dbe94b3Copy full SHA for dbe94b3
compiler/test/dotty/tools/vulpix/ParallelTesting.scala
@@ -776,7 +776,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
776
777
def reporterOutputLines(reporters: List[TestReporter]): List[String] = {
778
reporters.flatMap(_.allErrors).sortBy(_.pos.source.toString).flatMap { error =>
779
- (error.pos.span.toString + " in " + error.pos.source.file.name) :: error.getMessage().lines.toList
+ (error.pos.span.toString + " in " + error.pos.source.file.name) :: error.getMessage().linesIterator.toList
780
}
781
782
def checkFileTest(sourceName: String, checkFile: JFile, actual: List[String]) = {
0 commit comments