Skip to content

Commit 6dd2925

Browse files
lshanmugrvagg
authored andcommitted
test: fixed the arguments order in assert.strictEqual
PR-URL: #24414 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ouyang Yadong <oyydoibh@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
1 parent 5c4f569 commit 6dd2925

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
@@ -693,7 +693,7 @@ req.oncomplete = function(err, domains) {
693693
process.on('exit', function() {
694694
console.log(`${completed} tests completed`);
695695
assert.strictEqual(running, false);
696-
assert.strictEqual(expected, completed);
696+
assert.strictEqual(completed, expected);
697697
assert.ok(getaddrinfoCallbackCalled);
698698
});
699699

0 commit comments

Comments
 (0)