X-Git-Url: http://git.rot13.org/?p=perl-Redis.git;a=blobdiff_plain;f=t%2F10-Redis-List.t;h=4910e169968f8a3e8b3193dd8da0bad1ac0d219b;hp=1ebdd757a3f1110c67f940cc7ffb6b9f5ebd51a1;hb=HEAD;hpb=5fd015dede30dd1624d3988c73988cb09bfcb063 diff --git a/t/10-Redis-List.t b/t/10-Redis-List.t index 1ebdd75..4910e16 100755 --- a/t/10-Redis-List.t +++ b/t/10-Redis-List.t @@ -5,7 +5,6 @@ use strict; use Test::More tests => 8; use lib 'lib'; -use Data::Dump qw/dump/; BEGIN { use_ok( 'Redis::List' ); @@ -27,4 +26,3 @@ is_deeply( [ @a ], [ 'foo', 'bar', 'baz' ] ); ok( push( @a, 'push' ), 'push' ); is_deeply( [ @a ], [ 'foo', 'bar', 'baz', 'push' ] ); -#diag dump( @a );