From 607f3c5d84dd0fa6d6591bff3d5241540a6df073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sun, 6 Sep 2020 21:50:00 +0200 Subject: [PATCH] test: fix comment about DNS lookup test PR-URL: https://github.com/nodejs/node/pull/35080 Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Anna Henningsen Reviewed-By: Rich Trott --- test/parallel/test-c-ares.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/parallel/test-c-ares.js b/test/parallel/test-c-ares.js index 110d28ecf82261..383edd6f887a01 100644 --- a/test/parallel/test-c-ares.js +++ b/test/parallel/test-c-ares.js @@ -42,8 +42,7 @@ const dnsPromises = dns.promises; assert.strictEqual(res.family, 6); })(); -// Try resolution without callback - +// Try resolution without hostname. dns.lookup(null, common.mustCall((error, result, addressType) => { assert.ifError(error); assert.strictEqual(result, null);