aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
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------------------------------------------------------------------------