whitespace cleanup
[catagits/Catalyst-Runtime.git] / t / lib / TestAppOnDemand / Controller / Body.pm
index bbf3c88..4ee9e0f 100644 (file)
@@ -25,16 +25,16 @@ sub params : Local {
 
 sub read : Local {
     my ( $self, $c ) = @_;
-    
+
     # read some data
     my @chunks;
-    
+
     while ( my $data = $c->read( 10_000 ) ) {
         push @chunks, $data;
     }
 
     $c->res->content_type( 'text/plain');
-    
+
     $c->res->body( join ( '|', map { length $_ } @chunks ) );
 }