Test::Deep is already required; use it instead of is_deeply
[gitmo/MooseX-Storage.git] / t / 009_do_not_serialize_lazy.t
index 0e7fc7a..3a6c9cc 100644 (file)
@@ -4,6 +4,7 @@ use strict;
 use warnings;
 
 use Test::More 'no_plan';#tests => 6;
+use Test::Deep;
 use Test::Fatal;
 
 BEGIN {
@@ -37,7 +38,7 @@ is( $href->{'x'}, $$,           "       x => $$" );
 is( $href->{'z'}, 'z',          "       z => z" );
 ok( not(exists($href->{'y'})),  "       y does not exist" );
 
-is_deeply( 
+cmp_deeply( 
     $href, 
     { '__CLASS__' => 'Point',
       'x' => $$,