diff options
Diffstat (limited to 'cli/tests/resolve_dns.ts')
-rw-r--r-- | cli/tests/resolve_dns.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/resolve_dns.ts b/cli/tests/resolve_dns.ts index 7865d9680..d765e0536 100644 --- a/cli/tests/resolve_dns.ts +++ b/cli/tests/resolve_dns.ts @@ -37,6 +37,6 @@ console.log(JSON.stringify(txt)); try { await Deno.resolveDns("not-found-example.com", "A", nameServer); -} catch (e) { +} catch (_e) { console.log("Error thrown for not-found-example.com"); } |