remove trailing whitespace
[gitmo/Moose.git] / t / 010_basics / 015_buildargs.t
index bff4aeb..ac291a1 100644 (file)
@@ -10,7 +10,7 @@ use Test::More tests => 14;
     use Moose;
 
     has bar => ( is => "rw" );
-    has baz => ( is => "rw" );    
+    has baz => ( is => "rw" );
 
     sub BUILDARGS {
         my ( $self, @args ) = @_;
@@ -37,7 +37,7 @@ foreach my $class qw(Foo Bar) {
         my $o = $class->new(42, baz => 47);
         is($o->bar, 42, '... got the right bar');
         is($o->baz, 47, '... got the right bar');
-    }    
+    }
 }