X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_bugs%2F005_inline_reader_bug.t;h=cc0c01ecfa5469a573d2ac148172092a9bb4104f;hb=d03bd989b97597428b460d7f9a021e2931893fa0;hp=2e6775023346c0daf9c4a436862b925522315350;hpb=f6bee6fe1d579dc3d2ed2952cce9a1556040c8e5;p=gitmo%2FMoose.git diff --git a/t/100_bugs/005_inline_reader_bug.t b/t/100_bugs/005_inline_reader_bug.t index 2e67750..cc0c01e 100644 --- a/t/100_bugs/005_inline_reader_bug.t +++ b/t/100_bugs/005_inline_reader_bug.t @@ -10,7 +10,7 @@ use Test::Exception; =pod -This was a bug, but it is fixed now. This +This was a bug, but it is fixed now. This test makes sure it does not creep back in. =cut @@ -18,14 +18,14 @@ test makes sure it does not creep back in. { package Foo; use Moose; - + ::lives_ok { has 'bar' => ( - is => 'ro', + is => 'ro', isa => 'Int', lazy => 1, default => 10, ); } '... this didnt die'; } - +