summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2022-07-24 18:43:52 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2022-07-24 18:43:52 +0300
commit5b8d1c99da4dba7dd4e67d349b0ca1b4e43a9c28 (patch)
treef87517c1be7e8234a4832cee44607b110a15fb40 /tests
parent5c757bff12bc5ca4fecc3ea492285978caad4ec0 (diff)
downloadapscheduler-5b8d1c99da4dba7dd4e67d349b0ca1b4e43a9c28.tar.gz
Added missing pytest.fixture decorator
Diffstat (limited to 'tests')
-rw-r--r--tests/test_eventbrokers.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_eventbrokers.py b/tests/test_eventbrokers.py
index 43bfddd..f275f6e 100644
--- a/tests/test_eventbrokers.py
+++ b/tests/test_eventbrokers.py
@@ -94,6 +94,7 @@ async def raw_async_broker(request: SubRequest) -> AsyncEventBroker:
return cast(AsyncEventBroker, request.param)
+@pytest.fixture
async def async_broker(
raw_async_broker: AsyncEventBroker,
) -> AsyncGenerator[AsyncEventBroker, Any]: