Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/test_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1863,6 +1863,7 @@ async def test_response_aggregation_random_delay():
addresses=[socket.inet_aton("10.0.1.2")],
)
mocked_zc = unittest.mock.MagicMock()
mocked_zc.loop = asyncio.get_running_loop()
outgoing_queue = MulticastOutgoingQueue(mocked_zc, 0, 500)

now = current_time_millis()
Expand Down Expand Up @@ -1930,6 +1931,7 @@ async def test_future_answers_are_removed_on_send():
addresses=[socket.inet_aton("10.0.1.3")],
)
mocked_zc = unittest.mock.MagicMock()
mocked_zc.loop = asyncio.get_running_loop()
outgoing_queue = MulticastOutgoingQueue(mocked_zc, 0, 0)

now = current_time_millis()
Expand Down
Loading