From 1691c1a821ee42106ecc92017df07a787d1f0b5e Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 22 Aug 2016 10:45:39 +0100 Subject: [PATCH] Make page match navigation and <h1> --- app/templates/views/service-settings.html | 2 +- tests/app/main/views/test_service_settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/views/service-settings.html b/app/templates/views/service-settings.html index 936de2548..404ec396f 100644 --- a/app/templates/views/service-settings.html +++ b/app/templates/views/service-settings.html @@ -2,7 +2,7 @@ {% from "components/browse-list.html" import browse_list %} {% block page_title %} - Service settings – GOV.UK Notify + Settings – GOV.UK Notify {% endblock %} {% block maincolumn_content %} diff --git a/tests/app/main/views/test_service_settings.py b/tests/app/main/views/test_service_settings.py index 77817e033..969f5c454 100644 --- a/tests/app/main/views/test_service_settings.py +++ b/tests/app/main/views/test_service_settings.py @@ -20,7 +20,7 @@ def test_should_show_overview(app_, 'main.service_settings', service_id=service_one['id'])) assert response.status_code == 200 resp_data = response.get_data(as_text=True) - assert 'Service settings' in resp_data + assert 'Settings' in resp_data app.service_api_client.get_service.assert_called_with(service_one['id'])