Skip to content

Commit

Permalink
Need sort keys for consistent result.
Browse files Browse the repository at this point in the history
  • Loading branch information
tokuhirom committed Nov 27, 2012
1 parent c056aea commit b8463a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Build.PL
Expand Up @@ -12,6 +12,7 @@ my $build = Module::Build->new(
}, },
configure_requires => { 'Module::Build' => '0.38' }, configure_requires => { 'Module::Build' => '0.38' },
requires => { requires => {
perl => '5.008008',
# 'Exporter' => '0', # 'Exporter' => '0',
'parent' => '0', 'parent' => '0',
# 'Plack' => '0.9949', # 'Plack' => '0.9949',
Expand Down
1 change: 1 addition & 0 deletions lib/Test/Difflet.pm
Expand Up @@ -41,6 +41,7 @@ sub _eq_deeply {
my ($a, $b) = @_; my ($a, $b) = @_;
local $Data::Dumper::Terse = 1; local $Data::Dumper::Terse = 1;
local $Data::Dumper::Indent = 0; local $Data::Dumper::Indent = 0;
local $Data::Dumper::SortKeys = 1;
return Dumper($a) eq Dumper($b); return Dumper($a) eq Dumper($b);
} }


Expand Down

0 comments on commit b8463a0

Please sign in to comment.