Skip to content

Commit 56dc28e

Browse files
wanseobplroebuck
authored andcommittedFeb 16, 2019
Remove unnecessary post-processing code having no effect; closes #3708 (#3733)
The post-processing code `split('\n').join('\n')` does not change nor check anything
1 parent 16b4281 commit 56dc28e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/integration/helpers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ function _spawnMochaWithListeners(args, fn, opts) {
269269

270270
mocha.on('close', function(code) {
271271
fn(null, {
272-
output: output.split('\n').join('\n'),
272+
output: output,
273273
code: code,
274274
args: args
275275
});

0 commit comments

Comments
 (0)
Please sign in to comment.