X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=xt%2Fmoose-method-modifiers.t;h=2d49a8bfb201bb7e64e1b0c50abb5d9951f9a472;hb=f37e26e8696180101219f6fb1210cf2115ec7cb4;hp=5a6b796bbe031510f42982b393da29adea73fd27;hpb=cb35d35994b05c668d0db0beb599d2eda38be3c4;p=gitmo%2FMoo.git diff --git a/xt/moose-method-modifiers.t b/xt/moose-method-modifiers.t index 5a6b796..2d49a8b 100644 --- a/xt/moose-method-modifiers.t +++ b/xt/moose-method-modifiers.t @@ -16,7 +16,7 @@ use Moo::HandleMoose; around foo => sub { my ($orig, $self, @rest) = @_; $self->$orig(@rest); - $after_ran = 1; + $around_ran = 1; }; package Bar;