aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2004-06-17 06:23:13 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2004-06-17 06:23:13 +0000
commit613534c79526e313d6bfd5ffa514797b364dc185 (patch)
treec46efc0b1d147258ae0c65a4615e872f1de5edbe /test
parent94b97bdc0039c78a213e0a6170f3037eeb00122e (diff)
downloadluasocket-613534c79526e313d6bfd5ffa514797b364dc185.tar.gz
luasocket-613534c79526e313d6bfd5ffa514797b364dc185.tar.bz2
luasocket-613534c79526e313d6bfd5ffa514797b364dc185.zip
smtp.c was eatten by mime.c
Diffstat (limited to 'test')
-rw-r--r--test/httptest.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/httptest.lua b/test/httptest.lua
index a171dd9..45d7e8d 100644
--- a/test/httptest.lua
+++ b/test/httptest.lua
@@ -390,7 +390,7 @@ local r, c, h = http.request {
390 method = "HEAD", 390 method = "HEAD",
391 url = "http://www.cs.princeton.edu/~diego/" 391 url = "http://www.cs.princeton.edu/~diego/"
392} 392}
393assert(r and h and c == 200) 393assert(r and h and (c == 200), c)
394print("ok") 394print("ok")
395 395
396------------------------------------------------------------------------ 396------------------------------------------------------------------------