test: fix offending max-len linter error

Refer: https://github.com/nodejs/node/pull/5935
PR-URL: https://github.com/nodejs/node/pull/5980
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Phillip Johnsen <johphi@gmail.com>
This commit is contained in:
Sakthipriyan Vairamani 2016-04-01 02:28:39 +05:30
parent cf949293ba
commit 854f758169

View File

@ -11,7 +11,7 @@ if (process.argv[2] === 'child') {
return;
}
const proc = spawn(process.execPath, [__filename, 'child'], { stdio: 'ignore' });
const proc = spawn(process.execPath, [__filename, 'child'], {stdio: 'ignore'});
// To double-check this test, set stdio to 'pipe' and uncomment the line below.
// proc.stderr.pipe(process.stderr);
proc.on('exit', common.mustCall(function(exitCode) {