Skip to content

Commit 4f1fa2a

Browse files
thefourtheyeMyles Borins
authored and
Myles Borins
committed
test: fix offending max-len linter error
Refer: #5935 PR-URL: #5980 Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Phillip Johnsen <[email protected]>
1 parent f14d71c commit 4f1fa2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/known_issues/test-stdin-is-always-net.socket.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if (process.argv[2] === 'child') {
1111
return;
1212
}
1313

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

0 commit comments

Comments
 (0)