diff options
author | Sakthipriyan Vairamani <thechargingvolcano@gmail.com> | 2016-04-01 02:28:39 +0530 |
---|---|---|
committer | Sakthipriyan Vairamani <thechargingvolcano@gmail.com> | 2016-04-01 02:47:40 +0530 |
commit | 854f7581692f0409339d22a4b0e849a2fb35eea6 (patch) | |
tree | 1c13994efead2d48fdab7e7e00d8ddc9312cd452 /test | |
parent | cf949293ba55e5d8193e26623c6e9201b14cd819 (diff) | |
download | node-new-854f7581692f0409339d22a4b0e849a2fb35eea6.tar.gz |
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>
Diffstat (limited to 'test')
-rw-r--r-- | test/known_issues/test-stdin-is-always-net.socket.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/known_issues/test-stdin-is-always-net.socket.js b/test/known_issues/test-stdin-is-always-net.socket.js index a0c5c63198..78c1a7d2ea 100644 --- a/test/known_issues/test-stdin-is-always-net.socket.js +++ b/test/known_issues/test-stdin-is-always-net.socket.js @@ -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) { |