diff --git a/app/templates/views/service-settings.html b/app/templates/views/service-settings.html
index 205b7f251..7da88458b 100644
--- a/app/templates/views/service-settings.html
+++ b/app/templates/views/service-settings.html
@@ -252,10 +252,12 @@
{% if current_service.trial_mode %}
Your service is in trial mode
+ You can only:
+
- - you can only send messages to yourself
- - you can add people to your team, then you can send messages to them too
- - you can only send {{ current_service.message_limit }} messages per day
+ - send {{ current_service.message_limit }} text messages and emails per day
+ - send messages to yourself and other people in your team
+ - create letter templates, but not send them
diff --git a/app/templates/views/trial-mode.html b/app/templates/views/trial-mode.html
index 8e112a73d..fcd75e453 100644
--- a/app/templates/views/trial-mode.html
+++ b/app/templates/views/trial-mode.html
@@ -8,24 +8,24 @@
Trial mode
- When you set up a new service it will start in trial mode. This lets you try out GOV.UK Notify, with a few restrictions.
- A service in trial mode can only:
+ When you add a new service it will start in trial mode. This lets you try out GOV.UK Notify, with a few restrictions.
+ While your service is in trial mode you can only:
- send 50 text messages and emails per day
- - send messages to you and other people in your team
+ - send messages to yourself and other people in your team
- create letter templates, but not send them
- To remove these restrictions, you can
+ To remove these restrictions,
{% if current_service and current_service.trial_mode %}
- send us a request to go live.
+ you can request to go live.
{% else %}
- send us a request to go live.
+ go to the Settings page and request to go live.
{% endif %}
- Before you can request to go live, you must:
+ Before you request to go live, you must:
- accept our data sharing and financial agreement
- accept our terms of use
diff --git a/tests/app/main/views/test_service_settings.py b/tests/app/main/views/test_service_settings.py
index 848ecdaf1..ed060e80e 100644
--- a/tests/app/main/views/test_service_settings.py
+++ b/tests/app/main/views/test_service_settings.py
@@ -446,9 +446,8 @@ def test_show_restricted_service(
assert page.find('h1').text == 'Settings'
assert page.find_all('h2')[0].text == 'Your service is in trial mode'
- request_to_live = page.select_one('main p')
+ request_to_live = page.select('main p')[1]
request_to_live_link = request_to_live.select_one('a')
-
assert normalize_spaces(request_to_live.text) == expected_text
if expected_link: