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 MylesBorins committed Nov 21, 2017
1 parent b206395 commit 4705989
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 @@ -76,11 +76,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(childReciveing, 'The child was able to receive a message');
assert.ok(childSending);
assert.ok(childReciveing);
});
}

0 comments on commit 4705989

Please sign in to comment.