summaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-fork-ref.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-child-process-fork-ref.js')
-rw-r--r--test/parallel/test-child-process-fork-ref.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-child-process-fork-ref.js b/test/parallel/test-child-process-fork-ref.js
index de34f3eb8a..50a944e71b 100644
--- a/test/parallel/test-child-process-fork-ref.js
+++ b/test/parallel/test-child-process-fork-ref.js
@@ -31,7 +31,7 @@ if (process.argv[2] === 'child') {
});
child.once('exit', function() {
- assert.deepEqual(ipc, ['1', '2']);
+ assert.deepStrictEqual(ipc, ['1', '2']);
assert.equal(stdout, '3');
});
}