We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 668632d commit 699da05Copy full SHA for 699da05
test/common/index.js
@@ -773,8 +773,6 @@ const common = {
773
return localhostIPv4;
774
},
775
776
- get localhostIPv6() { return '::1'; },
777
-
778
// opensslCli defined lazily to reduce overhead of spawnSync
779
get opensslCli() {
780
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