We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76ba129 commit 95b2a39Copy full SHA for 95b2a39
test/common/index.js
@@ -787,8 +787,6 @@ const common = {
787
return localhostIPv4;
788
},
789
790
- get localhostIPv6() { return '::1'; },
791
-
792
// opensslCli defined lazily to reduce overhead of spawnSync
793
get opensslCli() {
794
if (opensslCli !== null) return opensslCli;
test/sequential/test-net-connect-local-error.js
@@ -14,10 +14,10 @@ const optionsIPv4 = {
14
};
15
16
const optionsIPv6 = {
17
- host: common.localhostIPv6,
+ host: '::1',
18
port: common.PORT + 2,
19
localPort: common.PORT + 3,
20
- localAddress: common.localhostIPv6
+ localAddress: '::1',
21
22
23
function onError(err, options) {
0 commit comments