From 009a7160ded6813c47aa4c2115a8f22e54e3e19b Mon Sep 17 00:00:00 2001 From: Martyn Inglis Date: Wed, 1 Jun 2016 17:02:12 +0100 Subject: [PATCH] pep8 appeased --- tests/app/main/views/test_service_settings.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/tests/app/main/views/test_service_settings.py b/tests/app/main/views/test_service_settings.py index eb226b6e7..0c832d015 100644 --- a/tests/app/main/views/test_service_settings.py +++ b/tests/app/main/views/test_service_settings.py @@ -242,6 +242,7 @@ def test_should_redirect_after_request_to_go_live( 'agent_team_id': ANY, 'message': 'From Test User on behalf of Test Service (http://localhost/services/6ce466d0-fd6a-11e5-82f5-e0accb9d11a6/dashboard)\n\nUsage estimate\n---\n\nOne million messages', # noqa # noqa + # noqa 'person_email': ANY }, headers=ANY @@ -549,12 +550,12 @@ def test_route_for_platform_admin_update_service(mocker, app_, platform_admin_us service_one) - -def test_set_reply_to_email_address(app_, - active_user_with_permissions, - mocker, - mock_update_service, - service_one): +def test_set_reply_to_email_address( + app_, + active_user_with_permissions, + mocker, + mock_update_service, + service_one): with app_.test_request_context(): with app_.test_client() as client: client.login(active_user_with_permissions, mocker, service_one) @@ -691,4 +692,4 @@ def test_does_not_show_research_mode_indicator( page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser') element = page.find('span', {"id": "research-mode"}) - assert not element \ No newline at end of file + assert not element