Skip to content

Commit

Permalink
Merge pull request #42 from agallou/fix_multiline_output
Browse files Browse the repository at this point in the history
fix display of multiline failed outputs
  • Loading branch information
agallou committed Jan 28, 2016
2 parents 2ff6a26 + 491a250 commit 1eb1493
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# `dev-master`

## Bugfix

* [#42](https://github.com/agallou/phpstorm-plugin/pull/42) Fix display of multiline failed outputs ([@agallou])


# 0.5.0 - 2016-01-28

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static TestsResult createFromTapOutput(String tapOutput)
currentClassname = nameLineMatcher.group(1);
currentMethodName = nameLineMatcher.group(2);
} else {
currentContent += currentLine.substring(1);
currentContent += currentLine.substring(1) + "\n";
}
}
}
Expand Down

0 comments on commit 1eb1493

Please sign in to comment.