Missing await in test function

This commit is contained in:
jpic
2021-04-24 13:12:18 +02:00
parent 2e1bbf098a
commit c6bc849574
+1 -1
View File
@@ -68,7 +68,7 @@ async def test_parallel():
@pytest.mark.asyncio
async def test_function():
async def hello(target):
target.exec('hello')
await target.exec('hello')
await Stub()(hello)