Skip to content

Commit 42c1742

Browse files
committed
Fix padding
1 parent bc348ca commit 42c1742

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/test/dotty/tools/vulpix/ParallelTesting.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
511511

512512
if (outputLines.length != checkLines.length || !linesMatch) {
513513
// Print diff to files and summary:
514-
val expectedSize = DiffUtil.EOF.length max outputLines.map(_.length).max
514+
val expectedSize = DiffUtil.EOF.length max checkLines.map(_.length).max
515515
val diff = outputLines.padTo(checkLines.length, "").zip(checkLines.padTo(outputLines.length, "")).map { case (act, exp) =>
516516
DiffUtil.mkColoredLineDiff(exp, act, expectedSize)
517517
}.mkString("\n")

0 commit comments

Comments
 (0)