From 85f50afdbc6ede7d6c9f4473ee04d9278075a4ef Mon Sep 17 00:00:00 2001 From: Daniel M Date: Tue, 30 Jan 2024 18:43:59 -0500 Subject: [PATCH] fix:flake8 --- test/test_stack/test_topk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_stack/test_topk.py b/test/test_stack/test_topk.py index 7d31feed..e2baba8c 100644 --- a/test/test_stack/test_topk.py +++ b/test/test_stack/test_topk.py @@ -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 )