diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2021-05-19 00:24:01 +0900 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2021-05-31 16:37:28 +0200 |
commit | 22426fee1ee37149175a564c6102a6a3ca99fb42 (patch) | |
tree | 462d8cd82bbcebdb665733ad9f4d0a32b0439d0e /cli/tests/resolve_dns.ts | |
parent | d987ca5b0767d75b59b7c6c16840b164a4c786c4 (diff) |
chore: update deno_lint binary used in CI to v0.5.0 (#10652)
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"); } |