From da7b7191c9e2a00e50f80c32aa5865066aae804d Mon Sep 17 00:00:00 2001 From: jpic Date: Sun, 31 May 2020 03:44:57 +0200 Subject: [PATCH] Missing await in test function --- tests/test_target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_target.py b/tests/test_target.py index 1fa3770..7827167 100644 --- a/tests/test_target.py +++ b/tests/test_target.py @@ -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)