X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F061_basic_deferred_w_io.t;h=95539ae51678354241b3362ecf2fb8e17cf998ff;hb=8b2ba857269b040d3a0f11f3d95e2c5b9af44415;hp=862974336b4e89c59174e046a83297a7207b6bec;hpb=acf1df17928851cd2253de13bfe7b6fe1edfcc49;p=gitmo%2FMooseX-Storage.git diff --git a/t/061_basic_deferred_w_io.t b/t/061_basic_deferred_w_io.t index 8629743..95539ae 100644 --- a/t/061_basic_deferred_w_io.t +++ b/t/061_basic_deferred_w_io.t @@ -30,7 +30,7 @@ BEGIN { has 'float' => (is => 'ro', isa => 'Num'); has 'array' => (is => 'ro', isa => 'ArrayRef'); has 'hash' => (is => 'ro', isa => 'HashRef'); - has 'object' => (is => 'ro', isa => 'Object'); + has 'object' => (is => 'ro', isa => 'Object'); } my $file = catfile($dir, 'temp.json'); @@ -42,7 +42,7 @@ my $file = catfile($dir, 'temp.json'); float => 10.5, array => [ 1 .. 10 ], hash => { map { $_ => undef } (1 .. 10) }, - object => Foo->new( number => 2 ), + object => Foo->new( number => 2 ), ); isa_ok($foo, 'Foo'); @@ -73,7 +73,7 @@ ok(!(-e $file), '... the file has been deleted'); float => 10.5, array => [ 1 .. 10 ], hash => { map { $_ => undef } (1 .. 10) }, - object => Foo->new( number => 2 ), + object => Foo->new( number => 2 ), ); isa_ok($foo, 'Foo');