Make page <title> match navigation and <h1>

This commit is contained in:
Chris Hill-Scott
2016-08-22 10:45:39 +01:00
parent 0252a1792a
commit 1691c1a821
2 changed files with 2 additions and 2 deletions

View File

@@ -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 %}

View File

@@ -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'])