Skip to content

Commit a050a83

Browse files
committed
test: ipv6 with zone index
1 parent 6ff4d74 commit a050a83

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/parallel/test-net-server-listen-options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function close() { this.close(); }
1818
// Test listen(host, port}) on ipv4
1919
net.createServer().listen({ host: '127.0.0.1', port: '3000' }).on('listening', common.mustCall(close));
2020
// Test listen(host, port}) on ipv6
21-
net.createServer().listen({ host: '::1', port: '3000' }).on('listening', common.mustCall(close));
21+
net.createServer().listen({ host: '::', port: '3000' }).on('listening', common.mustCall(close));
2222
}
2323

2424
// Test listen(port, cb) and listen({ port }, cb) combinations

0 commit comments

Comments
 (0)