From 56dc28e62f63903632d5fe4169b52cb2cdb5f7ea Mon Sep 17 00:00:00 2001 From: Wanseob Lim Date: Sun, 17 Feb 2019 03:48:03 +0900 Subject: [PATCH] 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 --- test/integration/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/helpers.js b/test/integration/helpers.js index b4393de2fb..b774bb7890 100644 --- a/test/integration/helpers.js +++ b/test/integration/helpers.js @@ -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 });