about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-02-14 22:45:15 +0000
committerEric Wong <e@80x24.org>2017-02-14 22:46:28 +0000
commit364de65f8a6b5729027cb70228312a141430122f (patch)
tree6405cfc19d403c72459fe542cbd34dff9d2be9a0 /t
parentcb8fc8c39d0a820b35ed3384c35122aaa66f9a6f (diff)
downloadpublic-inbox-364de65f8a6b5729027cb70228312a141430122f.tar.gz
PSGI specs already require PATH_INFO to be unescaped;
so our tests were wrong, too.
Diffstat (limited to 't')
-rw-r--r--t/cgi.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/cgi.t b/t/cgi.t
index 092ad8c7..77409660 100644
--- a/t/cgi.t
+++ b/t/cgi.t
@@ -148,7 +148,7 @@ EOF
         $im->add($reply);
         $im->done;
 
-        my $res = cgi_run("/test/slashy%2fasdf\@example.com/raw");
+        my $res = cgi_run("/test/slashy/asdf\@example.com/raw");
         like($res->{body}, qr/Message-Id: <\Q$slashy_mid\E>/,
                 "slashy mid raw hit");