summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2022-07-24 18:47:31 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2022-07-24 18:47:31 +0300
commit9776f489d9f301c589fee3e6f18568bc5d21bdd7 (patch)
tree2b6fcfc60b5a3c9181531394f3235f626d032a0f /tests
parent5b8d1c99da4dba7dd4e67d349b0ca1b4e43a9c28 (diff)
downloadapscheduler-9776f489d9f301c589fee3e6f18568bc5d21bdd7.tar.gz
Added another missing pytest.fixture decorator
Diffstat (limited to 'tests')
-rw-r--r--tests/test_datastores.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_datastores.py b/tests/test_datastores.py
index 0b594cf..7371416 100644
--- a/tests/test_datastores.py
+++ b/tests/test_datastores.py
@@ -620,6 +620,7 @@ class TestAsyncDataStores:
) -> AsyncDataStore:
return cast(AsyncDataStore, request.param)
+ @pytest.fixture
async def datastore(
self, raw_datastore: AsyncDataStore, event_broker: AsyncEventBroker
) -> AsyncGenerator[AsyncDataStore, Any]: