X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F001_mouse%2F807-multi-roles.t;h=4d0a3b0be8908995f125f1d15c90198e12b745ef;hb=7d4507ba0976d10a036aaa3a3a2ecb74c2bc38fb;hp=671e7d53b084e1effba80fe70d6b63bd7e0e016a;hpb=849b02a951189021f7c7253121e1974a26e3162b;p=gitmo%2FMouse.git diff --git a/t/001_mouse/807-multi-roles.t b/t/001_mouse/807-multi-roles.t index 671e7d5..4d0a3b0 100644 --- a/t/001_mouse/807-multi-roles.t +++ b/t/001_mouse/807-multi-roles.t @@ -26,7 +26,7 @@ use Test::More tests => 3; package MyApp; use Mouse; with ('Requires', 'Method'); - with ('Method2' => { alias => { bar => 'baz' } }); + with ('Method2' => { -alias => { bar => 'baz' } }); } my $m = MyApp->new;