Skip to content

Commit

Permalink
fix:tests for redis 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Sep 27, 2024
1 parent c4dcf7e commit 4e929e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_mixins/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def test_decode_str(self, r):

def test_decode_set(self, r):
r.sadd("foo", "member1")
assert r.smembers("foo") == {"member1"}
assert set(r.smembers("foo")) == {"member1"}

def test_decode_list(self, r):
r.rpush("foo", "a", "b")
Expand Down

0 comments on commit 4e929e6

Please sign in to comment.