diff --git a/test/parallel/test-child-process-silent.js b/test/parallel/test-child-process-silent.js index 7cd12a0a7a..20ad9683df 100644 --- a/test/parallel/test-child-process-silent.js +++ b/test/parallel/test-child-process-silent.js @@ -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); }); }