Skip to content

Commit 24e6247

Browse files
treysisnodejs-github-bot
authored andcommitted
dns: fix test suite, part 4
PR-URL: #39987 Fixes: #31566 Refs: #6307 Refs: #20710 Refs: #38099 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent edb19b5 commit 24e6247

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

test/parallel/test-net-dns-lookup.js

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ server.listen(0, common.mustCall(function() {
3333
net.connect(this.address().port, 'localhost')
3434
.on('lookup', common.mustCall(function(err, ip, type, host) {
3535
assert.strictEqual(err, null);
36-
assert.strictEqual(ip, '127.0.0.1');
3736
assert.match(ip, /^(127\.0\.0\.1|::1)$/);
3837
assert.match(type.toString, /^(4|6)$/);
3938
assert.strictEqual(host, 'localhost');

0 commit comments

Comments
 (0)