remove trailing whitespace
[gitmo/Moose.git] / t / 100_bugs / 004_subclass_use_base_bug.t
index 689cc21..4684ab3 100644 (file)
@@ -9,20 +9,20 @@ use Test::More tests => 2;
 
 =pod
 
-This just makes sure that the Bar gets 
+This just makes sure that the Bar gets
 a metaclass initialized for it correctly.
 
 =cut
 
 {
-    package Foo; 
-    use Moose; 
+    package Foo;
+    use Moose;
 
-    package Bar; 
+    package Bar;
     use strict;
     use warnings;
-        
-    use base 'Foo'; 
+
+    use base 'Foo';
 }
 
 my $bar = Bar->new;