diff --git a/app/celery/research_mode_tasks.py b/app/celery/research_mode_tasks.py index a72e16fef..6e9c2d68b 100644 --- a/app/celery/research_mode_tasks.py +++ b/app/celery/research_mode_tasks.py @@ -65,7 +65,6 @@ def sns_callback(notification_id): # This will only work if all notifications, including successful ones, are in the notifications table # If we decide to delete successful notifications, we will have to get this from notifications history - print(f"NOTIFICATION_ID {str(notification_id)} status {notification.status} dtime {notification.completed_at}") return json.dumps({ "CID": str(notification_id), "status": notification.status, diff --git a/tests/app/inbound_sms/test_rest.py b/tests/app/inbound_sms/test_rest.py index 0b7cd71f2..33027e9b5 100644 --- a/tests/app/inbound_sms/test_rest.py +++ b/tests/app/inbound_sms/test_rest.py @@ -76,7 +76,6 @@ def test_post_to_get_inbound_sms_filters_international_user_number(admin_request )['data'] assert len(sms) == 2 - print(f'sms is: {sms}') assert sms[1]['id'] == str(one.id) assert sms[1]['user_number'] == str(one.user_number) diff --git a/tests/app/notifications/test_notifications_ses_callback.py b/tests/app/notifications/test_notifications_ses_callback.py index 1bff3bab2..da0bf4f50 100644 --- a/tests/app/notifications/test_notifications_ses_callback.py +++ b/tests/app/notifications/test_notifications_ses_callback.py @@ -86,7 +86,6 @@ def test_check_and_queue_callback_task(mocker, sample_notification): # callback_api doesn't match by equality for some # reason, so we need to take this approach instead - print(f'mock_create.mock_calls is: {mock_create.mock_calls}') mock_create_args = mock_create.mock_calls[0][1] assert mock_create_args[0] == sample_notification assert mock_create_args[1].id == callback_api.id diff --git a/tests/app/service_invite/test_service_invite_rest.py b/tests/app/service_invite/test_service_invite_rest.py index 070b0b5d5..f27bf8acf 100644 --- a/tests/app/service_invite/test_service_invite_rest.py +++ b/tests/app/service_invite/test_service_invite_rest.py @@ -129,7 +129,6 @@ def test_get_all_invited_users_by_service(client, notify_db_session, sample_serv for i in range(0, 5): email = 'invited_user_{}@service.gov.uk'.format(i) invited_user = create_invited_user(sample_service, to_email_address=email) - print(f"INVITED USER = {invited_user.auth_type}") invites.append(invited_user) url = '/service/{}/invite'.format(sample_service.id) @@ -144,7 +143,6 @@ def test_get_all_invited_users_by_service(client, notify_db_session, sample_serv json_resp = json.loads(response.get_data(as_text=True)) invite_from = sample_service.users[0] - print(f"INVITE FROM {json_resp['data']}") for invite in json_resp['data']: assert invite['service'] == str(sample_service.id)