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:
parent
cf949293ba
commit
854f758169
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user