Skip to content

Commit 15d970d

Browse files
Fishrock123jasnell
authored andcommitted
test,repl: use deepStrictEqual for false-y values
PR-URL: #6196 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com>
1 parent 5c14d69 commit 15d970d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-repl-tab-complete.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ var spaceTimeout = setTimeout(function() {
176176
}, 1000);
177177

178178
testMe.complete(' ', common.mustCall(function(error, data) {
179-
assert.deepEqual(data, [[], undefined]);
179+
assert.deepStrictEqual(data, [[], undefined]);
180180
clearTimeout(spaceTimeout);
181181
}));
182182

@@ -255,5 +255,5 @@ putIn.run(['.clear']);
255255
putIn.run(['function a() {}']);
256256

257257
testMe.complete('a().b.', common.mustCall((error, data) => {
258-
assert.deepEqual(data, [[], undefined]);
258+
assert.deepStrictEqual(data, [[], undefined]);
259259
}));

0 commit comments

Comments
 (0)