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 Nov 28, 2017
1 parent 3f35fc0 commit aa269ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-child-process-silent.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,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 aa269ad

Please sign in to comment.