Skip to content

Commit

Permalink
Remove unnecessary post-processing code having no effect; closes #3708 (
Browse files Browse the repository at this point in the history
#3733)

The post-processing code `split('\n').join('\n')` does not change nor check anything
  • Loading branch information
wanseob authored and plroebuck committed Feb 16, 2019
1 parent 16b4281 commit 56dc28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/helpers.js
Expand Up @@ -269,7 +269,7 @@ function _spawnMochaWithListeners(args, fn, opts) {

mocha.on('close', function(code) {
fn(null, {
output: output.split('\n').join('\n'),
output: output,
code: code,
args: args
});
Expand Down

0 comments on commit 56dc28e

Please sign in to comment.