Skip to content

Commit b32f743

Browse files
committed
add self
1 parent 80fc58c commit b32f743

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_asyncio/test_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1402,7 +1402,7 @@ async def test_zscan_iter(self, r: redis.Redis):
14021402
pairs = [k async for k in r.zscan_iter("a", match="a")]
14031403
assert set(pairs) == {(b"a", 1)}
14041404

1405-
async def test_scan_iter_family_executes_commands_with_same_iter_req_id():
1405+
async def test_scan_iter_family_executes_commands_with_same_iter_req_id(self):
14061406
"""Assert that all calls to execute_command receives the _iter_req_id kwarg"""
14071407
import uuid
14081408

tests/test_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2235,7 +2235,7 @@ def test_zscan_iter(self, r):
22352235
pairs = list(r.zscan_iter("a", match="a"))
22362236
assert set(pairs) == {(b"a", 1)}
22372237

2238-
def test_scan_iter_family_executes_commands_with_same_iter_req_id():
2238+
def test_scan_iter_family_executes_commands_with_same_iter_req_id(self):
22392239
"""Assert that all calls to execute_command receives the _iter_req_id kwarg"""
22402240
import uuid
22412241

0 commit comments

Comments
 (0)