Skip to content

Commit 901333a

Browse files
committed
fix display of multiline failed outputs
1 parent 2ff6a26 commit 901333a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/atoum/intellij/plugin/atoum/model/TestsResultFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static TestsResult createFromTapOutput(String tapOutput)
4444
currentClassname = nameLineMatcher.group(1);
4545
currentMethodName = nameLineMatcher.group(2);
4646
} else {
47-
currentContent += currentLine.substring(1);
47+
currentContent += currentLine.substring(1) + "\n";
4848
}
4949
}
5050
}

0 commit comments

Comments
 (0)