Fixed index test to work around HTTP::Response bug
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Action / Index.pm
index d6b2ada..ef3dd1a 100644 (file)
@@ -5,7 +5,7 @@ use base 'TestApp::Controller::Action';
 
 sub index : Private {
     my ( $self, $c ) = @_;
-    $c->res->body( 'Action::Index index' );
+    $c->res->body( 'Action-Index index' );
 }
 
 1;