Mouse::Role improved
[gitmo/Mouse.git] / t / 030_roles / failing / 016_runtime_roles_and_nonmoose.t
index 6a39f77..1f6ec9b 100644 (file)
@@ -34,10 +34,10 @@ use Scalar::Util 'blessed';
 }
 
 my $bar = Bar->new;
-isa_ok($bar, 'Bar');    
+isa_ok($bar, 'Bar');
 
 my $foo = Foo->new;
-isa_ok($foo, 'Foo');  
+isa_ok($foo, 'Foo');
 
 ok(!$bar->can( 'talk' ), "... the role is not composed yet");