test: fix offending max-len linter error
authorSakthipriyan Vairamani <thechargingvolcano@gmail.com>
Thu, 31 Mar 2016 20:58:39 +0000 (02:28 +0530)
committerMyles Borins <mborins@us.ibm.com>
Mon, 11 Apr 2016 15:49:31 +0000 (11:49 -0400)
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>
test/known_issues/test-stdin-is-always-net.socket.js

index a0c5c63..78c1a7d 100644 (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) {