From 154257027f8c69dd7e6df5c2fe8b272190d1259e Mon Sep 17 00:00:00 2001 From: Pea Tyczynska Date: Mon, 31 Dec 2018 15:53:56 +0000 Subject: [PATCH] Nothing in conftest uses sample_service now :) --- 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 8ecb0ae20..abcb0f64a 100644 --- a/tests/app/conftest.py +++ b/tests/app/conftest.py @@ -1036,7 +1036,7 @@ def notify_service(notify_db, notify_db_session): @pytest.fixture(scope='function') def sample_service_whitelist(notify_db, notify_db_session, service=None, email_address=None, mobile_number=None): if service is None: - service = sample_service(notify_db, notify_db_session) + service = create_service() if email_address: whitelisted_user = ServiceWhitelist.from_string(service.id, EMAIL_TYPE, email_address)