Skip to content

Commit

Permalink
test: fix offending max-len linter error
Browse files Browse the repository at this point in the history
Refer: #5935
PR-URL: #5980
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Phillip Johnsen <johphi@gmail.com>
  • Loading branch information
thefourtheye committed Mar 31, 2016
1 parent cf94929 commit 854f758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/known_issues/test-stdin-is-always-net.socket.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 854f758

Please sign in to comment.