X-Git-Url: http://git.rot13.org/?p=perl-Redis.git;a=blobdiff_plain;f=t%2F01-Redis.t;h=ddb3da60c3fcf317a32a48905eac59cb29ca1170;hp=90247e93e97f7da8d30a6c59c3a7ad43947df69b;hb=5a4f5b7df615181414bd90265d47d819794b123e;hpb=eee28c05a37edb8220fc9ab7828a73ff014bc77d diff --git a/t/01-Redis.t b/t/01-Redis.t index 90247e9..ddb3da6 100755 --- a/t/01-Redis.t +++ b/t/01-Redis.t @@ -138,7 +138,7 @@ cmp_ok( $o->scard( $set ), '==', 0, 'scard' ); $o->sadd( 'test-set1', $_ ) foreach ( 'foo', 'bar', 'baz' ); $o->sadd( 'test-set2', $_ ) foreach ( 'foo', 'baz', 'xxx' ); -my $inter = [ 'baz', 'foo' ]; +my $inter = [ 'foo', 'baz' ]; is_deeply( [ $o->sinter( 'test-set1', 'test-set2' ) ], $inter, 'siter' );