about summary refs log tree commit homepage
path: root/t/git-http-backend.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-05-30 00:51:44 +0000
committerEric Wong <e@80x24.org>2016-05-30 00:55:36 +0000
commit21cf3d6a9a4be06deca4adea9de071f772fb1c57 (patch)
treed0bd52cc06d0bdca64f5c03d25b24e31d29d50d3 /t/git-http-backend.t
parent9665b1ffe0c5417e54ccd313794577d7c62c429c (diff)
downloadpublic-inbox-21cf3d6a9a4be06deca4adea9de071f772fb1c57.tar.gz
Plack::Request is unnecessary overhead for this given the
strictness of git-http-backend.  Furthermore, having to make
commit 311c2adc8c63 ("avoid Plack::Request parsing body")
to avoid tempfiles should not have been necessary.
Diffstat (limited to 't/git-http-backend.t')
-rw-r--r--t/git-http-backend.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/git-http-backend.t b/t/git-http-backend.t
index 889d507a..e8793923 100644
--- a/t/git-http-backend.t
+++ b/t/git-http-backend.t
@@ -13,7 +13,7 @@ use Cwd qw(getcwd);
 my $git_dir = $ENV{GIANT_GIT_DIR};
 plan 'skip_all' => 'GIANT_GIT_DIR not defined' unless $git_dir;
 foreach my $mod (qw(Danga::Socket
-                        Plack::Util Plack::Request Plack::Builder
+                        Plack::Util Plack::Builder
                         HTTP::Date HTTP::Status Net::HTTP)) {
         eval "require $mod";
         plan skip_all => "$mod missing for git-http-backend.t" if $@;