Skip to content

Commit ec4f61d

Browse files
committed
test: use strictEqual in test-cwd-enoent-repl.js
In file /test/parallel/test-cwd-enoent-repl.js at line: 26:3 and 27:3 assert.equal was using. This commit includes changing use of assert.equal to assert.strictEqual.
1 parent 8264a22 commit ec4f61d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-cwd-enoent-repl.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ proc.stdin.write('require("path");\n');
2323
proc.stdin.write('process.exit(42);\n');
2424

2525
proc.once('exit', common.mustCall(function(exitCode, signalCode) {
26-
assert.equal(exitCode, 42);
27-
assert.equal(signalCode, null);
26+
assert.strictEqual(exitCode, 42);
27+
assert.strictEqual(signalCode, null);
2828
}));

0 commit comments

Comments
 (0)