diff options
author | Fayland Lam <fayland@gmail.com> | 2011-11-26 10:48:59 +0800 |
---|---|---|
committer | Fayland Lam <fayland@gmail.com> | 2011-11-26 10:48:59 +0800 |
commit | f470a726feaf4f5af220fa3f291532cfcbbd695d (patch) | |
tree | 9fda2e0a2a8bc6ea02bdddf7cc338ed49b4862ae | |
parent | update POD (diff) | |
download | dancer-logger-psgi-f470a726feaf4f5af220fa3f291532cfcbbd695d.tar.gz |
fix tests
-rw-r--r-- | t/01_basic.t | 2 |
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 }; |