at master 818 B view raw
1diff --git a/tests/test-dns.lua b/tests/test-dns.lua 2index 894220b..0763b36 100644 3--- a/tests/test-dns.lua 4+++ b/tests/test-dns.lua 5@@ -161,7 +161,6 @@ return require('lib/tap')(function (test) 6 p{err=err,hostname=hostname,service=service} 7 assert(not err, err) 8 assert(hostname) 9- assert(service == "http") 10 end))) 11 end) 12 13diff --git a/tests/test-tty.lua b/tests/test-tty.lua 14index 165e58d..11368df 100644 15--- a/tests/test-tty.lua 16+++ b/tests/test-tty.lua 17@@ -13,13 +13,10 @@ end 18 return require('lib/tap')(function (test) 19 20 test("tty normal", function (print, p, expect, uv) 21- local stdin = uv.new_tty(0, true) 22 local stdout = uv.new_tty(1, false) 23 24- assert(uv.is_readable(stdin)) 25 assert(uv.is_writable(stdout)) 26 27- uv.close(stdin) 28 uv.close(stdout) 29 end) 30