Skip to content

Commit d0368b8

Browse files
lveteaurvagg
authored andcommitted
test: fix strictEqual() argument order
PR-URL: #23829 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent 9afdc09 commit d0368b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-https-connect-address-family.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const https = require('https');
3737
};
3838
// Will fail with ECONNREFUSED if the address family is not honored.
3939
https.get(options, common.mustCall(function() {
40-
assert.strictEqual('::1', this.socket.remoteAddress);
40+
assert.strictEqual(this.socket.remoteAddress, hostAddrIPv6);
4141
this.destroy();
4242
}));
4343
}));

0 commit comments

Comments
 (0)