diff --git a/test/parallel/test-child-process-silent.js b/test/parallel/test-child-process-silent.js index 387164381bc4a1..1bb2edd2e9db0a 100644 --- a/test/parallel/test-child-process-silent.js +++ b/test/parallel/test-child-process-silent.js @@ -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); }); }