Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
Remove unnecessary post-processing code having no effect; closes moch…
Browse files Browse the repository at this point in the history
…ajs#3708 (mochajs#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 113f9fd commit 9f2998e
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 9f2998e

Please sign in to comment.