X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F010_basics%2F015_buildargs.t;h=ac291a1405c0a3dd4bd8414affbff76d1fb50dc6;hb=2f5dbc0b197a65067b04d289f31cf1fb8345c62a;hp=bff4aeba85fa32deeda45ffadd86e71cb2c7c920;hpb=e606ae5f848070d889472329819c95f5ba763ca3;p=gitmo%2FMoose.git diff --git a/t/010_basics/015_buildargs.t b/t/010_basics/015_buildargs.t index bff4aeb..ac291a1 100644 --- a/t/010_basics/015_buildargs.t +++ b/t/010_basics/015_buildargs.t @@ -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'); - } + } }