From 2b46049e1671ee4fa41fbf0aafa31011bd51da59 Mon Sep 17 00:00:00 2001 From: Oscar Funes Date: Fri, 6 Oct 2017 10:25:26 -0700 Subject: [PATCH] test: fix typo PR-URL: https://github.com/nodejs/node/pull/15938 Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Ruben Bridgewater --- test/parallel/test-child-process-silent.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/parallel/test-child-process-silent.js b/test/parallel/test-child-process-silent.js index b280e101810c54..7edc9d232fba65 100644 --- a/test/parallel/test-child-process-silent.js +++ b/test/parallel/test-child-process-silent.js @@ -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'); }); }