Skip to content

Commit 0783f05

Browse files
committed
fix linters
1 parent 97f86f9 commit 0783f05

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_commands.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2067,7 +2067,8 @@ def test_bzmpop(self, unstable_r):
20672067
with pytest.raises(redis.DataError):
20682068
unstable_r.bzmpop(1, "2", ["b", "a"], count=2)
20692069
unstable_r.zadd("b", {"b1": 10, "ab": 9, "b3": 8})
2070-
assert unstable_r.bzmpop(0, "2", ["b", "a"], max=True) == [b"b", [[b"b1", b"10"]]]
2070+
res = [b"b", [[b"b1", b"10"]]]
2071+
assert unstable_r.bzmpop(0, "2", ["b", "a"], max=True) == res
20712072
assert unstable_r.bzmpop(1, "2", ["foo", "bar"], max=True) is None
20722073

20732074
def test_zrange(self, r):

0 commit comments

Comments
 (0)