remove trailing whitespace
[gitmo/Moose.git] / t / 500_test_moose / 003_test_moose_has_attribute_ok.t
index e8e3869..957ad33 100644 (file)
@@ -13,17 +13,17 @@ BEGIN {
 {
     package Foo;
     use Moose;
-    
+
     has 'foo';
 }
 
 {
     package Bar;
     use Moose;
-    
+
     extends 'Foo';
-    
-    has 'bar';    
+
+    has 'bar';
 }