1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 21:50:00 -05:00

fix lint error

This commit is contained in:
Yoshiya Hinosawa 2025-01-20 14:49:08 +09:00
parent a4e46000f5
commit e36fa4b665
No known key found for this signature in database
GPG key ID: 9017DB4559488785

View file

@ -1357,5 +1357,6 @@ Deno.test({ permissions: { net: true } }, async function resolveDnsEdns0() {
const addr = await Deno.resolveDns("example.com", "A", {
nameServer: { ipAddr: "127.0.0.1", port },
});
assertEquals(addr.length, NUM_RECORD);
await server.close();
});