Skip to content

Commit

Permalink
Merge pull request #10 from mna/wip-fix-ci
Browse files Browse the repository at this point in the history
Fix CI test
  • Loading branch information
mna authored Mar 22, 2018
2 parents b1296bf + 850be22 commit dc7b496
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ func TestCommands(t *testing.T) {
{"SISMEMBER", redis.Args{"t1", "a"}, int64(1), ""},
{"SMEMBERS", redis.Args{"t1"}, lenResult(2), ""}, // order is not deterministic
{"SMOVE", redis.Args{"t1", "{t1}.c", "a"}, int64(1), ""},
{"SPOP", redis.Args{"t2"}, nil, ""},
{"SRANDMEMBER", redis.Args{"t2"}, nil, ""},
{"SPOP", redis.Args{"t3"}, nil, ""},
{"SRANDMEMBER", redis.Args{"t3"}, nil, ""},
{"SREM", redis.Args{"t1", "b"}, int64(1), ""},
{"SSCAN", redis.Args{"{t1}.b", 0}, lenResult(2), ""},
{"SUNION", redis.Args{"{t1}.b", "{t1}.c"}, lenResult(3), ""},
Expand Down

0 comments on commit dc7b496

Please sign in to comment.