about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-12-22 04:38:13 +0000
committerEric Wong <e@80x24.org>2016-12-22 04:38:13 +0000
commit96ee5f0f64972f0ce3143538437d4de1febe3c51 (patch)
tree8035541c7ddeee835be3c81dc5d30b2614fa67b1 /t
parent00abc9a8c4582d8635c989fdf4010ff30cb92d4d (diff)
downloadpublic-inbox-96ee5f0f64972f0ce3143538437d4de1febe3c51.tar.gz
This does not make installation easier, but lightens runtime a
bit.  Plack::Request is unnecessary bloat and indirection which
does things behind our back.  $env has all the stuff we need.
Diffstat (limited to 't')
-rw-r--r--t/repobrowse_common_git.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/repobrowse_common_git.perl b/t/repobrowse_common_git.perl
index cd8ce582..de61efe6 100644
--- a/t/repobrowse_common_git.perl
+++ b/t/repobrowse_common_git.perl
@@ -6,7 +6,7 @@ use warnings;
 use Test::More;
 use File::Temp qw/tempdir/;
 use Cwd qw/getcwd/;
-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 $0" if $@;