Add parens for isa_ok
Dave Rolsky [Sat, 17 Sep 2011 02:07:09 +0000 (21:07 -0500)]
t/basics/universal_methods_wrappable.t

index 1d4a1cf..388b28c 100644 (file)
@@ -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;