From: Dave Rolsky Date: Sat, 17 Sep 2011 02:07:09 +0000 (-0500) Subject: Add parens for isa_ok X-Git-Tag: 2.0300~25 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8596646e2540c05c35092ec3b4371458596f5fac;p=gitmo%2FMoose.git Add parens for isa_ok --- diff --git a/t/basics/universal_methods_wrappable.t b/t/basics/universal_methods_wrappable.t index 1d4a1cf..388b28c 100644 --- a/t/basics/universal_methods_wrappable.t +++ b/t/basics/universal_methods_wrappable.t @@ -20,12 +20,10 @@ use Test::More; use Test::More; # for $TODO - local $TODO = 'UNIVERSAL methods should be wrappable'; - ::is( ::exception { with 'FakeBar' }, undef, 'applied role' ); my $foo = Foo->new; - ::isa_ok $foo, 'Bar'; + ::isa_ok( $foo, 'Bar' ); } done_testing;