avoid perl warnings
Tatsuhiko Miyagawa [Sat, 30 Jan 2010 01:39:44 +0000 (17:39 -0800)]
t/013_cookiestore.t

index 62bb04a..cc1e08c 100644 (file)
@@ -38,7 +38,7 @@ test_psgi ua => $ua, app => $app, client => sub {
     $res = $cb->(GET "/");
     is $res->content, "counter=2";
 
-    my $res = $cb->(GET "/");
+    $res = $cb->(GET "/");
     is $res->content, "counter=0";
 };