Skip to content

Commit 167b394

Browse files
nitsnwitsMylesBorins
authored andcommitted
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 used. This commit changes use of assert.equal to assert.strictEqual. PR-URL: #9952 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent b6aeb83 commit 167b394

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)