1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
From: Jochen Sprickerhof <jspricke@debian.org>
Date: Sun, 21 Sep 2025 14:12:33 +0200
Subject: Port to new pytest-asyncio
---
tests/async_client_test.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/async_client_test.py b/tests/async_client_test.py
index 0933f8b..5af30b4 100644
--- a/tests/async_client_test.py
+++ b/tests/async_client_test.py
@@ -2801,7 +2801,7 @@ class TestClass:
assert await get_time(999_999_999) == 30
- async def test_sync_forever(self, async_client, aioresponse, event_loop):
+ async def test_sync_forever(self, async_client, aioresponse):
sync_url = re.compile(
rf"^https://example\.org{MATRIX_API_PATH_V3}/sync",
)
@@ -2833,7 +2833,7 @@ class TestClass:
assert async_client.should_upload_keys
- task: asyncio.Task = event_loop.create_task(
+ task: asyncio.Task = asyncio.get_running_loop().create_task(
async_client.sync_forever(loop_sleep_time=100)
)
await async_client.synced.wait()
@@ -2844,7 +2844,7 @@ class TestClass:
with pytest.raises(asyncio.CancelledError):
await task
- async def test_stop_sync_forever(self, async_client, aioresponse, event_loop):
+ async def test_stop_sync_forever(self, async_client, aioresponse):
sync_url = re.compile(rf"^https://example\.org{MATRIX_API_PATH_V3}/sync")
aioresponse.get(
@@ -2880,7 +2880,7 @@ class TestClass:
async_client.add_presence_callback(event_callback, PresenceEvent)
- task: asyncio.Task = event_loop.create_task(
+ task: asyncio.Task = asyncio.get_running_loop().create_task(
async_client.sync_forever(loop_sleep_time=100)
)
|