X-Git-Url: http://git.rot13.org/?p=perl-Redis.git;a=blobdiff_plain;f=t%2F20-Redis-Hash.t;h=7bd9dafcc09d90695f8649b8161c4385575b6264;hp=687b85c1ee28631d5a3bfbf515b3264664eb5f5f;hb=baf5779857bc91db613d13c843af045cc0cbf3f8;hpb=d614f74a89501c756b5e6a240995c0aa0295573b diff --git a/t/20-Redis-Hash.t b/t/20-Redis-Hash.t index 687b85c..7bd9daf 100755 --- a/t/20-Redis-Hash.t +++ b/t/20-Redis-Hash.t @@ -21,10 +21,10 @@ ok( ! keys %h, 'empty' ); ok( %h = ( 'foo' => 42, 'bar' => 1, 'baz' => 99 ), '=' ); -is_deeply( [ keys %h ], [ 'bar', 'baz', 'foo' ], 'keys' ); +is_deeply( [ sort keys %h ], [ 'bar', 'baz', 'foo' ], 'keys' ); is_deeply( \%h, { bar => 1, baz => 99, foo => 42, }, 'structure' ); -diag dump( \%h ); +#diag dump( \%h );