Skip to content

Commit 6f15b01

Browse files
osukaaMylesBorins
authored andcommitted
test: remove literal messages
PR-URL: #15938 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent aa269ad commit 6f15b01

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/parallel/test-child-process-silent.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ if (process.argv[2] === 'pipe') {
7676
parent.kill();
7777

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

8282
// Check message system
83-
assert.ok(childSending, 'The child was able to send a message');
84-
assert.ok(childReciveing, 'The child was able to receive a message');
83+
assert.ok(childSending);
84+
assert.ok(childReciveing);
8585
});
8686
}

0 commit comments

Comments
 (0)