summary refs log tree commit diff
path: root/t
diff options
context:
space:
mode:
authorFayland Lam <fayland@gmail.com>2011-11-26 10:48:59 +0800
committerFayland Lam <fayland@gmail.com>2011-11-26 10:48:59 +0800
commitf470a726feaf4f5af220fa3f291532cfcbbd695d (patch)
tree9fda2e0a2a8bc6ea02bdddf7cc338ed49b4862ae /t
parentupdate POD (diff)
downloaddancer-logger-psgi-f470a726feaf4f5af220fa3f291532cfcbbd695d.tar.gz
fix tests
Diffstat (limited to 't')
-rw-r--r--t/01_basic.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/01_basic.t b/t/01_basic.t
index a91f923..7473250 100644
--- a/t/01_basic.t
+++ b/t/01_basic.t
@@ -38,7 +38,7 @@ Test::TCP::test_tcp(
 
         my $app = sub {
             my $env     = shift;
-            my $request = Dancer::Request->new($env);
+            my $request = Dancer::Request->new(env => $env);
             Dancer->dance($request);
         };
         $app = builder { enable "ConsoleLogger"; $app };