From 8b89b7f9112ad978a683107880866a5acfb987a1 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Wed, 4 Jan 2017 13:02:01 +0000 Subject: [PATCH] Remove print statements. --- app/notify_client/service_api_client.py | 1 - tests/app/main/views/test_platform_admin.py | 1 - 2 files changed, 2 deletions(-) diff --git a/app/notify_client/service_api_client.py b/app/notify_client/service_api_client.py index a4f0ef9d2..e974890db 100644 --- a/app/notify_client/service_api_client.py +++ b/app/notify_client/service_api_client.py @@ -60,7 +60,6 @@ class ServiceAPIClient(NotifyAdminAPIClient): """ Retrieve a list of services. """ - print(params_dict) return self.get('/service', params=params_dict) def get_active_services(self, params_dict=None): diff --git a/tests/app/main/views/test_platform_admin.py b/tests/app/main/views/test_platform_admin.py index e7654fcb3..0ac1aafea 100644 --- a/tests/app/main/views/test_platform_admin.py +++ b/tests/app/main/views/test_platform_admin.py @@ -99,7 +99,6 @@ def test_platform_admin_toggle_including_from_test_key( ): with app_.test_request_context(): with app_.test_client() as client: - print(include_from_test_key) mock_get_user(mocker, user=platform_admin_user) client.login(platform_admin_user) response = client.get(url_for('main.platform_admin', include_from_test_key=include_from_test_key))