Skip to content

Commit

Permalink
dns: fix test suite, part 4
Browse files Browse the repository at this point in the history
PR-URL: #39987
Fixes: #31566
Refs: #6307
Refs: #20710
Refs: #38099
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
  • Loading branch information
treysis authored and nodejs-github-bot committed Sep 12, 2021
1 parent edb19b5 commit 24e6247
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/parallel/test-net-dns-lookup.js
Expand Up @@ -33,7 +33,6 @@ server.listen(0, common.mustCall(function() {
net.connect(this.address().port, 'localhost')
.on('lookup', common.mustCall(function(err, ip, type, host) {
assert.strictEqual(err, null);
assert.strictEqual(ip, '127.0.0.1');
assert.match(ip, /^(127\.0\.0\.1|::1)$/);
assert.match(type.toString, /^(4|6)$/);
assert.strictEqual(host, 'localhost');
Expand Down

0 comments on commit 24e6247

Please sign in to comment.