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 717156e commit 0ca20f1Copy full SHA for 0ca20f1
tests/integrational/asyncio/test_change_uuid.py
@@ -56,10 +56,12 @@ async def test_change_uuid_no_lock():
56
@pytest.fixture
57
def event_loop():
58
loop = asyncio.new_event_loop()
59
+ asyncio.set_event_loop(loop)
60
try:
61
yield loop
62
finally:
63
loop.run_until_complete(asyncio.sleep(0))
64
+ asyncio.set_event_loop(None)
65
loop.close()
66
67
def test_uuid_validation_at_init(event_loop):
tests/integrational/asyncio/test_message_count.py
@@ -11,10 +11,12 @@
11
12
13
14
15
16
17
18
19
20
21
22
0 commit comments