whitespace cleanup
[catagits/Catalyst-Runtime.git] / t / aggregate / live_engine_response_print.t
index ad00ea3..96fc5f6 100644 (file)
@@ -1,5 +1,3 @@
-#!perl
-
 use strict;
 use warnings;
 
@@ -12,13 +10,13 @@ use Catalyst::Test 'TestApp';
 my $expected = {
    one => "foo",
    two => "foobar",
-   three => "foo,bar,baz",
+   three => "foo,bar,baz:",
 };
 
 for my $action ( sort keys %{$expected} ) {
     ok( my $response = request('http://localhost/engine/response/print/' . $action ),
         'Request' );
     ok( $response->is_success, "Response $action successful 2xx" );
-    
+
     is( $response->content, $expected->{$action}, "Content $action OK" );
 }