fix whitespace to make "dzil authordeps --missing" happy (see dist-zilla issue#196)
[gitmo/MooseX-Storage.git] / t / 012_param_json.t
index 1a3bb20..b855ef1 100644 (file)
@@ -1,9 +1,8 @@
-#!/usr/bin/perl
-
 use strict;
 use warnings;
 
 use Test::More;
+use Test::Deep;
 
 use Test::Requires {
     'MooseX::Storage::Format::JSONpm' => 0.01, # skip all if not installed
@@ -64,7 +63,7 @@ for my $jsonpm (
 
     my $json = eval { Bar->new(x => 10, y => 20)->freeze({ format => $p }) };
 
-    is_deeply(
+    cmp_deeply(
         JSON->new->decode($json),
         {
             '__CLASS__' => 'Bar-0.01',