Skip to content

Commit 555ef65

Browse files
lshanmugcodebytere
authored andcommitted
test: fixed the arguments order in assert.strictEqual
PR-URL: #24414 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Ouyang Yadong <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
1 parent 2734c20 commit 555ef65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/internet/test-dns.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ req.oncomplete = function(err, domains) {
691691
process.on('exit', function() {
692692
console.log(`${completed} tests completed`);
693693
assert.strictEqual(running, false);
694-
assert.strictEqual(expected, completed);
694+
assert.strictEqual(completed, expected);
695695
assert.ok(getaddrinfoCallbackCalled);
696696
});
697697

0 commit comments

Comments
 (0)