Skip to content

Commit

Permalink
fix:flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Jan 30, 2024
1 parent e247e16 commit 85f50af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_stack/test_topk.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def test_topk_incrby(r: redis.Redis):
)
assert [None, "bar"] == r.topk().incrby("topk", ["42", "xyzzy"], [8, 4])
with pytest.deprecated_call():
assert [3, 6, 10, 4, 0] == r.tofixpk().count(
assert [3, 6, 10, 4, 0] == r.topk().count(
"topk", "bar", "baz", "42", "xyzzy", 4
)

Expand Down

0 comments on commit 85f50af

Please sign in to comment.