X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=xt%2Fmoose-method-modifiers.t;h=5a6b796bbe031510f42982b393da29adea73fd27;hb=efab921092f4ef5b0939fadcd27c02e764e2b78c;hp=89c9891363cfb154edcd676c3fbe1ab835f10a9a;hpb=d86853e0debad21bad01d268a3f7429d6aa902c3;p=gitmo%2FMoo.git diff --git a/xt/moose-method-modifiers.t b/xt/moose-method-modifiers.t index 89c9891..5a6b796 100644 --- a/xt/moose-method-modifiers.t +++ b/xt/moose-method-modifiers.t @@ -4,7 +4,7 @@ use Test::More; use Moo::HandleMoose; { - package FooAttr; + package ModifyFoo; use Moo::Role; our $before_ran = 0; @@ -21,7 +21,7 @@ use Moo::HandleMoose; package Bar; use Moose; - with 'FooAttr'; + with 'ModifyFoo'; sub foo { } }