From f997b446ff192759d7b0a67ae9e6bc89fa003a2e Mon Sep 17 00:00:00 2001
From: karlchillmaid
Date: Thu, 11 Apr 2019 15:43:26 +0100
Subject: [PATCH] Update
app/templates/views/service-settings/request-to-go-live.html
Co-Authored-By: quis
---
app/templates/views/service-settings/request-to-go-live.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/request-to-go-live.html b/app/templates/views/service-settings/request-to-go-live.html
index d1471268e..45d66f00e 100644
--- a/app/templates/views/service-settings/request-to-go-live.html
+++ b/app/templates/views/service-settings/request-to-go-live.html
@@ -58,7 +58,7 @@
{% elif (not current_service.go_live_checklist_completed) or (show_agreement and not agreement_signed) %}
- No go
+ You must complete these steps before you can request to go live.
{% else %}
diff --git a/tests/app/main/views/test_service_settings.py b/tests/app/main/views/test_service_settings.py
index 3b638ac89..847bc3536 100644
--- a/tests/app/main/views/test_service_settings.py
+++ b/tests/app/main/views/test_service_settings.py
@@ -800,7 +800,7 @@ def test_should_not_show_go_live_button_if_checklist_not_complete(
assert not page.select('[type=submit]')
assert len(page.select('main p')) == 1
assert normalize_spaces(page.select_one('main p').text) == (
- 'No go'
+ 'You must complete these steps before you can request to go live.'
)