We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2ff6a26 + 491a250 commit 1eb1493Copy full SHA for 1eb1493
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# `dev-master`
2
3
+## Bugfix
4
+
5
+* [#42](https://github.com/agallou/phpstorm-plugin/pull/42) Fix display of multiline failed outputs ([@agallou])
6
7
8
# 0.5.0 - 2016-01-28
9
src/org/atoum/intellij/plugin/atoum/model/TestsResultFactory.java
@@ -44,7 +44,7 @@ public static TestsResult createFromTapOutput(String tapOutput)
44
currentClassname = nameLineMatcher.group(1);
45
currentMethodName = nameLineMatcher.group(2);
46
} else {
47
- currentContent += currentLine.substring(1);
+ currentContent += currentLine.substring(1) + "\n";
48
}
49
50
0 commit comments