8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f73502 commit edd8a15Copy full SHA for edd8a15
test/parallel/test-repl-tab-complete.js
@@ -178,7 +178,7 @@ var spaceTimeout = setTimeout(function() {
178
}, 1000);
179
180
testMe.complete(' ', common.mustCall(function(error, data) {
181
- assert.deepEqual(data, [[], undefined]);
+ assert.deepStrictEqual(data, [[], undefined]);
182
clearTimeout(spaceTimeout);
183
}));
184
@@ -257,5 +257,5 @@ putIn.run(['.clear']);
257
putIn.run(['function a() {}']);
258
259
testMe.complete('a().b.', common.mustCall((error, data) => {
260
261
0 commit comments