Skip to content

Commit 7081a40

Browse files
committed
more type fixes
1 parent 0114189 commit 7081a40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/server/message_queue/test_redis_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,5 +273,5 @@ async def message_callback(message):
273273
), "No messages were received through the callback"
274274
received_message = messages_received[0]
275275
assert isinstance(received_message, SessionMessage)
276-
assert received_message.message.root.method == "test_method"
277-
assert received_message.message.root.id == 1
276+
assert received_message.message.root.method == "test_method" # type: ignore
277+
assert received_message.message.root.id == 1 # type: ignore

0 commit comments

Comments
 (0)