From 6462081f716454da0971711710d89e538a7bdd34 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Tue, 13 Mar 2018 11:39:40 +0000 Subject: [PATCH] Retitle request to go live submission page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `

`s should be unique across the site. This page’s `

` matches that of the previous page (the one with the checklist). This commit re-titles it to: - be unique - more accurately describe the content of the page --- .../views/service-settings/submit-request-to-go-live.html | 4 ++-- tests/app/main/views/test_service_settings.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/templates/views/service-settings/submit-request-to-go-live.html b/app/templates/views/service-settings/submit-request-to-go-live.html index f0aad3576..517afd278 100644 --- a/app/templates/views/service-settings/submit-request-to-go-live.html +++ b/app/templates/views/service-settings/submit-request-to-go-live.html @@ -6,12 +6,12 @@ {% from "components/banner.html" import banner_wrapper %} {% block service_page_title %} - Request to go live + How do you plan to use Notify? {% endblock %} {% block maincolumn_content %} -

Request to go live

+

How do you plan to use Notify?

{{ checkbox_group('What kind of messages will you be sending?', [ diff --git a/tests/app/main/views/test_service_settings.py b/tests/app/main/views/test_service_settings.py index 2a6e96edd..a013066ec 100644 --- a/tests/app/main/views/test_service_settings.py +++ b/tests/app/main/views/test_service_settings.py @@ -532,7 +532,7 @@ def test_should_show_request_to_go_live( page = client_request.get( 'main.submit_request_to_go_live', service_id=SERVICE_ONE_ID ) - assert page.h1.text == 'Request to go live' + assert page.h1.text == 'How do you plan to use Notify?' for channel, label in ( ('email', 'Emails'), ('sms', 'Text messages'),