test: remove literal messages

PR-URL: https://github.com/nodejs/node/pull/15938
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
Oscar Funes 2017-10-06 10:27:42 -07:00 committed by Ruben Bridgewater
parent bd74fb4cee
commit 53f08841f8
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762

View File

@ -97,11 +97,11 @@ if (process.argv[2] === 'pipe') {
parent.kill(); parent.kill();
// Check std(out|err) pipes // Check std(out|err) pipes
assert.ok(!stdoutData, 'The stdout socket was piped to parent'); assert.ok(!stdoutData);
assert.ok(!stderrData, 'The stderr socket was piped to parent'); assert.ok(!stderrData);
// Check message system // Check message system
assert.ok(childSending, 'The child was able to send a message'); assert.ok(childSending);
assert.ok(childReceiving, 'The child was able to receive a message'); assert.ok(childReceiving);
}); });
} }