diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-06-17 06:23:13 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-06-17 06:23:13 +0000 |
commit | 613534c79526e313d6bfd5ffa514797b364dc185 (patch) | |
tree | c46efc0b1d147258ae0c65a4615e872f1de5edbe /test | |
parent | 94b97bdc0039c78a213e0a6170f3037eeb00122e (diff) | |
download | luasocket-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.lua | 2 |
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 | } |
393 | assert(r and h and c == 200) | 393 | assert(r and h and (c == 200), c) |
394 | print("ok") | 394 | print("ok") |
395 | 395 | ||
396 | ------------------------------------------------------------------------ | 396 | ------------------------------------------------------------------------ |