A little clean up

This commit is contained in:
Rebecca Law
2017-12-21 17:18:35 +00:00
committed by Leo Hemsted
parent 91e8a6df9a
commit c54e0d322b
4 changed files with 18 additions and 31 deletions

View File

@@ -57,8 +57,7 @@ from tests.app.db import (
create_service,
create_api_key,
create_inbound_number,
create_letter_contact,
create_inbound_sms,
create_letter_contact
)
@@ -649,16 +648,6 @@ def sample_email_notification(notify_db, notify_db_session):
return notification
@pytest.fixture(scope='function')
def mock_statsd_inc(mocker):
return mocker.patch('app.statsd_client.incr')
@pytest.fixture(scope='function')
def mock_statsd_timing(mocker):
return mocker.patch('app.statsd_client.timing')
@pytest.fixture(scope='function')
def sample_notification_history(
notify_db,
@@ -1048,18 +1037,13 @@ def sample_provider_rate(notify_db, notify_db_session, valid_from=None, rate=Non
@pytest.fixture
def sample_inbound_numbers(notify_db, notify_db_session, sample_service):
service = create_service(service_name='sample service 2')
inbound_numbers = []
inbound_numbers = list()
inbound_numbers.append(create_inbound_number(number='1', provider='mmg'))
inbound_numbers.append(create_inbound_number(number='2', provider='mmg', active=False, service_id=service.id))
inbound_numbers.append(create_inbound_number(number='3', provider='firetext', service_id=sample_service.id))
return inbound_numbers
@pytest.fixture
def sample_inbound_sms(notify_db, notify_db_session, sample_service):
return create_inbound_sms(sample_service)
@pytest.fixture
def restore_provider_details(notify_db, notify_db_session):
"""