make EOL tests pass
[gitmo/MooseX-Storage.git] / t / 002_basic_io.t
index bef8ba4..3fe1289 100644 (file)
@@ -33,7 +33,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');
@@ -45,7 +45,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');