whitespace cleanup
[catagits/Catalyst-Devel.git] / t / back_compat.t
index f1cd584..c70fdda 100644 (file)
@@ -13,7 +13,7 @@ my $example1 = $helper->get_file('MyTestHelper', 'example1');
 chomp $example1;
 
 my $example2 = $helper->get_file('MyTestHelper', 'example2');
-chomp $example2; 
+chomp $example2;
 
 
 is $example1, 'foobar[% test_var %]';
@@ -31,7 +31,7 @@ open $fh, $fn or die $@;
 #seek $fh, 0, 0; # Rewind
 my $contents;
 {
-    local $/; 
+    local $/;
     $contents = <$fh>;
 }
 is $contents, "foobartest_val\n";