about summary refs log tree commit homepage
path: root/t/psgi_mount.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-07-02 07:56:38 +0000
committerEric Wong <e@80x24.org>2016-07-02 07:57:29 +0000
commit193e9a586d49fb111fd201f491b1ad0be4e386b3 (patch)
tree02d5d074777dce9a2557d59622841cc7754c49f0 /t/psgi_mount.t
parent2375cc488f2b1ea314452067a196a576558f7b57 (diff)
downloadpublic-inbox-193e9a586d49fb111fd201f491b1ad0be4e386b3.tar.gz
Lighter and ever-so-slightly faster!

Most importantly, this won't do non-obvious stuff behind our
backs like trying to parse a POST request body for a query
string param.
Diffstat (limited to 't/psgi_mount.t')
-rw-r--r--t/psgi_mount.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/psgi_mount.t b/t/psgi_mount.t
index c1c1b0c6..dae45baf 100644
--- a/t/psgi_mount.t
+++ b/t/psgi_mount.t
@@ -9,7 +9,7 @@ my $tmpdir = tempdir('psgi-path-XXXXXX', TMPDIR => 1, CLEANUP => 1);
 my $maindir = "$tmpdir/main.git";
 my $addr = 'test-public@example.com';
 my $cfgpfx = "publicinbox.test";
-my @mods = qw(HTTP::Request::Common Plack::Request Plack::Test URI::Escape);
+my @mods = qw(HTTP::Request::Common Plack::Test URI::Escape);
 foreach my $mod (@mods) {
         eval "require $mod";
         plan skip_all => "$mod missing for plack.t" if $@;