Skip to content
This repository has been archived by the owner on Aug 31, 2018. It is now read-only.

Commit

Permalink
test: fix typo
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node#15938
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
osukaa authored and addaleax committed Dec 7, 2017

Verified

This commit was signed with the committer’s verified signature. The key has expired.
addaleax Anna Henningsen
1 parent 7594bbe commit d70793a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/parallel/test-child-process-silent.js
Original file line number Diff line number Diff line change
@@ -74,17 +74,17 @@ if (process.argv[2] === 'pipe') {
child.stdout.pipe(process.stdout, { end: false });

let childSending = false;
let childReciveing = false;
let childReceiving = false;
child.on('message', function(message) {
if (childSending === false) {
childSending = (message === 'message from child');
}

if (childReciveing === false) {
childReciveing = (message === 'got message from master');
if (childReceiving === false) {
childReceiving = (message === 'got message from master');
}

if (childReciveing === true) {
if (childReceiving === true) {
child.kill();
}
});
@@ -102,6 +102,6 @@ if (process.argv[2] === 'pipe') {

// 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(childReceiving, 'The child was able to receive a message');
});
}

0 comments on commit d70793a

Please sign in to comment.