diff --git a/t/test.t b/t/test.t index 80316e95..72f71137 100644 --- a/t/test.t +++ b/t/test.t @@ -41,7 +41,7 @@ sub hashbang { )? }xms; - return ($+{interpreter}, $+{arguments}); + return ( $+{interpreter}, $+{arguments} ); } sub process_file { @@ -81,7 +81,7 @@ sub process_file { } elsif ( $interpreter =~ m{perl} ) { my $command; - if ($arguments =~ m{-.*T}mx) { + if ( $arguments =~ m{-.*T}mx ) { $command = [ 'perl', '-cwT', $file ]; } else {