Skip to content

Commit edd8a15

Browse files
Fishrock123Myles Borins
authored and
Myles Borins
committed
test,repl: use deepStrictEqual for false-y values
PR-URL: #6196 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]>
1 parent 3f73502 commit edd8a15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ var spaceTimeout = setTimeout(function() {
178178
}, 1000);
179179

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

@@ -257,5 +257,5 @@ putIn.run(['.clear']);
257257
putIn.run(['function a() {}']);
258258

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

0 commit comments

Comments
 (0)