Skip to content

Commit 5920c37

Browse files
committed
fixing unit tests
1 parent 7ed1c17 commit 5920c37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_wait_for.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async def test_wait_for_ack(self):
2222
client.wait_for = AsyncMock(return_value='acknowledged')
2323

2424
# Define options with a specific message ID
25-
options = {'id': '1234'}
25+
options = '1234'
2626

2727
# Create an instance of WaitFor with the mock client and options
2828
waiter = WaitFor(client, options)
@@ -48,7 +48,7 @@ async def test_wait_for_reply(self):
4848
client.wait_for = AsyncMock(return_value='response')
4949

5050
# Define options with a specific message ID
51-
options = {'id': '5678'}
51+
options = '5678'
5252

5353
# Create an instance of WaitFor with the mock client and options
5454
waiter = WaitFor(client, options)

0 commit comments

Comments
 (0)