Skip to content

Commit 1eb1493

Browse files
committed
Merge pull request #42 from agallou/fix_multiline_output
fix display of multiline failed outputs
2 parents 2ff6a26 + 491a250 commit 1eb1493

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# `dev-master`
22

3+
## Bugfix
4+
5+
* [#42](https://github.com/agallou/phpstorm-plugin/pull/42) Fix display of multiline failed outputs ([@agallou])
6+
37

48
# 0.5.0 - 2016-01-28
59

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)