Don't rely on qw() providing PAREN tokens
Florian Ragwitz [Sun, 19 Sep 2010 18:08:21 +0000 (18:08 +0000)]
t/aggregate/live_engine_response_headers.t

index 123b125..0e153cf 100644 (file)
@@ -12,7 +12,7 @@ use HTTP::Request::Common;
 
 my $content_length;
 
-foreach my $method qw(HEAD GET) {
+foreach my $method (qw(HEAD GET)) {
     my $expected = join( ', ', 1 .. 10 );
 
     my $request = HTTP::Request::Common->can($method)