summaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-fork-exec-argv.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-child-process-fork-exec-argv.js')
-rw-r--r--test/parallel/test-child-process-fork-exec-argv.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-child-process-fork-exec-argv.js b/test/parallel/test-child-process-fork-exec-argv.js
index a7a58452f9..f37eb019f2 100644
--- a/test/parallel/test-child-process-fork-exec-argv.js
+++ b/test/parallel/test-child-process-fork-exec-argv.js
@@ -23,6 +23,6 @@ if (process.argv[2] === 'fork') {
});
child.on('exit', function() {
- assert.deepEqual(JSON.parse(out), execArgv);
+ assert.deepStrictEqual(JSON.parse(out), execArgv);
});
}