aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-ipc.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-child-process-ipc.js')
-rw-r--r--test/parallel/test-child-process-ipc.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-child-process-ipc.js b/test/parallel/test-child-process-ipc.js
index 36293cb73c..f1652a91e6 100644
--- a/test/parallel/test-child-process-ipc.js
+++ b/test/parallel/test-child-process-ipc.js
@@ -44,13 +44,13 @@ child.stdout.on('data', function(data) {
console.log(`child said: ${JSON.stringify(data)}`);
if (!gotHelloWorld) {
console.error('testing for hello world');
- assert.strictEqual('hello world\r\n', data);
+ assert.strictEqual(data, 'hello world\r\n');
gotHelloWorld = true;
console.error('writing echo me');
child.stdin.write('echo me\r\n');
} else {
console.error('testing for echo me');
- assert.strictEqual('echo me\r\n', data);
+ assert.strictEqual(data, 'echo me\r\n');
gotEcho = true;
child.stdin.end();
}