We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9afdc09 commit d0368b8Copy full SHA for d0368b8
test/parallel/test-https-connect-address-family.js
@@ -37,7 +37,7 @@ const https = require('https');
37
};
38
// Will fail with ECONNREFUSED if the address family is not honored.
39
https.get(options, common.mustCall(function() {
40
- assert.strictEqual('::1', this.socket.remoteAddress);
+ assert.strictEqual(this.socket.remoteAddress, hostAddrIPv6);
41
this.destroy();
42
}));
43
0 commit comments