From b99f41cd82f8b667020d0150f437466b7c5cfd04 Mon Sep 17 00:00:00 2001 From: Dotty CI Date: Wed, 27 Feb 2019 18:51:07 +0100 Subject: [PATCH] Follow-up of issue #5463 (String API) --- compiler/test/dotty/tools/vulpix/ParallelTesting.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/test/dotty/tools/vulpix/ParallelTesting.scala b/compiler/test/dotty/tools/vulpix/ParallelTesting.scala index 52b93850225d..87d5ab101021 100644 --- a/compiler/test/dotty/tools/vulpix/ParallelTesting.scala +++ b/compiler/test/dotty/tools/vulpix/ParallelTesting.scala @@ -776,7 +776,7 @@ trait ParallelTesting extends RunnerOrchestration { self => def reporterOutputLines(reporters: List[TestReporter]): List[String] = { reporters.flatMap(_.allErrors).sortBy(_.pos.source.toString).flatMap { error => - (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 } } def checkFileTest(sourceName: String, checkFile: JFile, actual: List[String]) = {