Skip to content

Commit

Permalink
test: fix stderr reference
Browse files Browse the repository at this point in the history
PR-URL: #15938
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
osukaa authored and MylesBorins committed Oct 23, 2017
1 parent 2b46049 commit 7634652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-child-process-silent.js
Expand Up @@ -62,7 +62,7 @@ if (process.argv[2] === 'pipe') {
stdoutData = true;
});
let stderrData = false;
parent.stdout.on('data', function() {
parent.stderr.on('data', function() {
stderrData = true;
});

Expand Down

0 comments on commit 7634652

Please sign in to comment.