We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ed1c17 commit 5920c37Copy full SHA for 5920c37
tests/test_wait_for.py
@@ -22,7 +22,7 @@ async def test_wait_for_ack(self):
22
client.wait_for = AsyncMock(return_value='acknowledged')
23
24
# Define options with a specific message ID
25
- options = {'id': '1234'}
+ options = '1234'
26
27
# Create an instance of WaitFor with the mock client and options
28
waiter = WaitFor(client, options)
@@ -48,7 +48,7 @@ async def test_wait_for_reply(self):
48
client.wait_for = AsyncMock(return_value='response')
49
50
51
- options = {'id': '5678'}
+ options = '5678'
52
53
54
0 commit comments