We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 050bae6 commit c506b7bCopy full SHA for c506b7b
1 file changed
test/parallel/test-child-process-fork-exec-path.js
@@ -9,7 +9,7 @@ var copyPath = path.join(common.tmpDir, 'node-copy.exe');
9
10
if (process.env.FORK) {
11
assert(process.send);
12
- assert.equal(process.argv[0], copyPath);
+ assert.strictEqual(process.argv[0], copyPath);
13
process.send(msg);
14
process.exit();
15
} else {
@@ -34,6 +34,6 @@ if (process.env.FORK) {
34
}));
35
child.on('exit', common.mustCall(function(code) {
36
fs.unlinkSync(copyPath);
37
- assert.equal(code, 0);
+ assert.strictEqual(code, 0);
38
39
}
0 commit comments