about summary refs log tree commit homepage
path: root/t/cgi.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-09-03 01:57:12 +0000
committerEric Wong <e@80x24.org>2015-09-03 02:04:40 +0000
commit793da75fbcb5a2c546b3d582f39761fff3d8292d (patch)
tree3da469a09280ada32b0023a21d67a7778e9d78d8 /t/cgi.t
parent81a9c1b476987d845b340ab9013d26cf4487cb9a (diff)
downloadpublic-inbox-793da75fbcb5a2c546b3d582f39761fff3d8292d.tar.gz
Since cross-posting is inevitable, we shall link to external
message archives for interopability.
Diffstat (limited to 't/cgi.t')
-rw-r--r--t/cgi.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/cgi.t b/t/cgi.t
index a6600c20..b0af8ae1 100644
--- a/t/cgi.t
+++ b/t/cgi.t
@@ -160,19 +160,19 @@ EOF
         like($res->{body}, qr/Message-Id: <blahblah\@example\.com>/,
                 "mid raw hit");
         $res = cgi_run("/test/blahblah\@example.con/raw");
-        like($res->{head}, qr/Status: 404 Not Found/, "mid raw miss");
+        like($res->{head}, qr/Status: 300 Multiple Choices/, "mid raw miss");
 
         $res = cgi_run("/test/blahblah\@example.com/");
         like($res->{body}, qr/\A<html>/, "mid html hit");
         like($res->{head}, qr/Status: 200 OK/, "200 response");
         $res = cgi_run("/test/blahblah\@example.con/");
-        like($res->{head}, qr/Status: 404 Not Found/, "mid html miss");
+        like($res->{head}, qr/Status: 300 Multiple Choices/, "mid html miss");
 
         $res = cgi_run("/test/blahblah\@example.com/f/");
         like($res->{body}, qr/\A<html>/, "mid html");
         like($res->{head}, qr/Status: 200 OK/, "200 response");
         $res = cgi_run("/test/blahblah\@example.con/f/");
-        like($res->{head}, qr/Status: 404 Not Found/, "mid html miss");
+        like($res->{head}, qr/Status: 300 Multiple Choices/, "mid html miss");
 
         $res = cgi_run("/test/");
         like($res->{body}, qr/slashy%2Fasdf%40example\.com/,