X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FCatalyst%2FAction%2FTestAfter.pm;h=199ea256e71fedd37ce97a6b1fb19b6a19e5a64c;hp=61fb9d7d54d78724479db2f50f9175368e3a754b;hb=ae29b412955743885e80350085167b54b69672da;hpb=e16a6c4e6c4d49e73b5286b3186616af14f3f554 diff --git a/t/lib/Catalyst/Action/TestAfter.pm b/t/lib/Catalyst/Action/TestAfter.pm index 61fb9d7..199ea25 100644 --- a/t/lib/Catalyst/Action/TestAfter.pm +++ b/t/lib/Catalyst/Action/TestAfter.pm @@ -8,7 +8,7 @@ use base qw/Catalyst::Action/; sub execute { my $self = shift; my ( $controller, $c ) = @_; - $self->NEXT::execute( @_ ); + $self->next::method( @_ ); $c->res->header( 'X-Action-After', $c->stash->{after_message} ); }