X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F102_io_storable_file.t;fp=t%2F102_io_storable_file.t;h=9a9851c6b49d968d51021f837a6232db9c92c07a;hb=788413640638794ef360ffa501aee32a4a8cbc3b;hp=feb01757d24203484ece192aa5f9fd3fd53c6b58;hpb=f446cd0fed516332c0e96dddb12549703ecb772c;p=gitmo%2FMooseX-Storage.git diff --git a/t/102_io_storable_file.t b/t/102_io_storable_file.t index feb0175..9a9851c 100644 --- a/t/102_io_storable_file.t +++ b/t/102_io_storable_file.t @@ -23,7 +23,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.storable'); @@ -35,7 +35,7 @@ my $file = catfile($dir,'temp.storable'); 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');