Skip to content

Commit

Permalink
test: remove literal messages
Browse files Browse the repository at this point in the history
PR-URL: #15938
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
  • Loading branch information
osukaa authored and BridgeAR committed Oct 19, 2017
1 parent bd74fb4 commit 53f0884
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/parallel/test-child-process-silent.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ if (process.argv[2] === 'pipe') {
parent.kill();

// Check std(out|err) pipes
assert.ok(!stdoutData, 'The stdout socket was piped to parent');
assert.ok(!stderrData, 'The stderr socket was piped to parent');
assert.ok(!stdoutData);
assert.ok(!stderrData);

// Check message system
assert.ok(childSending, 'The child was able to send a message');
assert.ok(childReceiving, 'The child was able to receive a message');
assert.ok(childSending);
assert.ok(childReceiving);
});
}

0 comments on commit 53f0884

Please sign in to comment.