From a96072af2d3a9316808dbcda1b63ebde885354cc Mon Sep 17 00:00:00 2001 From: Wanseob Lim Date: Sat, 16 Feb 2019 13:26:29 +0900 Subject: [PATCH] remove a post-processing code having no effect; closes #3708 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 });