test: fixed the arguments order in assert.strictEqual

PR-URL: https://github.com/nodejs/node/pull/24414
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ouyang Yadong <oyydoibh@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
This commit is contained in:
Lakshmi Shanmugam 2018-11-17 16:54:37 +05:30 committed by Rich Trott
parent 282c5cfc27
commit 051e083ca4

View File

@ -693,7 +693,7 @@ req.oncomplete = function(err, domains) {
process.on('exit', function() {
console.log(`${completed} tests completed`);
assert.strictEqual(running, false);
assert.strictEqual(expected, completed);
assert.strictEqual(completed, expected);
assert.ok(getaddrinfoCallbackCalled);
});