From 5a4f5b7df615181414bd90265d47d819794b123e Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Wed, 17 Jun 2009 16:19:17 +0000 Subject: [PATCH] sinter ordering of results (in insertion order?) changed with recent redis from git git-svn-id: svn+ssh://llin/home/dpavlin/private/svn/Redis@57 447b33ff-793d-4489-8442-9bea7d161be5 --- t/01-Redis.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' ); -- 2.20.1