remove trailing whitespace
[gitmo/Moose.git] / t / 100_bugs / 016_inheriting_from_roles.t
index 2fa0357..aa6a86b 100644 (file)
@@ -15,9 +15,9 @@ use Test::Exception;
 {
     package My::Class;
     use Moose;
-    
+
     ::throws_ok {
         extends 'My::Role';
-    } qr/You cannot inherit from a Moose Role \(My\:\:Role\)/, 
+    } qr/You cannot inherit from a Moose Role \(My\:\:Role\)/,
     '... this croaks correctly';
 }