Remove use of overload
[catagits/Catalyst-Runtime.git] / t / lib / TestAppDoubleAutoBug.pm
index 5c72461..00855cd 100644 (file)
@@ -18,7 +18,7 @@ __PACKAGE__->setup;
 sub execute {
     my $c      = shift;
     my $class  = ref( $c->component( $_[0] ) ) || $_[0];
-    my $action = "$_[1]";
+    my $action = $_[1]->reverse();
 
     my $method;