Missing await in test function

This commit is contained in:
jpic 2020-05-31 03:44:57 +02:00
parent 1660acbcbb
commit da7b7191c9

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)