Update app/templates/views/service-settings/request-to-go-live.html

Co-Authored-By: quis <me@quis.cc>
This commit is contained in:
karlchillmaid
2019-04-11 15:43:26 +01:00
committed by Chris Hill-Scott
parent 436d023722
commit f997b446ff
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@
</p>
{% elif (not current_service.go_live_checklist_completed) or (show_agreement and not agreement_signed) %}
<p>
No go
You must complete these steps before you can request to go live.
</p>
{% else %}
<p>

View File

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