Skip to content

Commit f301df4

Browse files
nitsnwitsMylesBorins
authored andcommittedFeb 1, 2017
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 <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 3b67001 commit f301df4

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)
Please sign in to comment.