remove trailing whitespace
[gitmo/Moose.git] / t / 020_attributes / 008_attribute_type_unions.t
index 95ce5f9..86dfbcf 100644 (file)
@@ -11,7 +11,7 @@ use Test::Exception;
 {
     package Foo;
     use Moose;
-    
+
     has 'bar' => (is => 'rw', isa => 'ArrayRef | HashRef');
 }
 
@@ -55,7 +55,7 @@ dies_ok {
 {
     package Bar;
     use Moose;
-    
+
     has 'baz' => (is => 'rw', isa => 'Str | CodeRef');
 }