From a3310c2da6d7f7bb8cfcc6e2bf439b6bebb1cefd Mon Sep 17 00:00:00 2001 From: Pea Tyczynska Date: Mon, 31 Dec 2018 15:20:30 +0000 Subject: [PATCH] sample_job uses create_service instead of sample_service --- tests/app/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/conftest.py b/tests/app/conftest.py index cadced70d..48fe278d2 100644 --- a/tests/app/conftest.py +++ b/tests/app/conftest.py @@ -382,7 +382,7 @@ def sample_job( archived=False ): if service is None: - service = sample_service(notify_db, notify_db_session) + service = create_service() if template is None: template = sample_template(notify_db, notify_db_session, service=service)