Create branch register_actions.
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Action / TestMyAction.pm
index 66bcdf9..5a83aee 100644 (file)
@@ -9,7 +9,7 @@ sub execute {
     my $self = shift;
     my ( $controller, $c, $test ) = @_;
     $c->res->header( 'X-TestAppActionTestMyAction', 'MyAction works' );
-    $self->NEXT::execute(@_);
+    $self->next::method(@_);
 }
 
 1;