diff --git a/app/templates/views/service-settings.html b/app/templates/views/service-settings.html index c1c6c73fc..1b7eb544b 100644 --- a/app/templates/views/service-settings.html +++ b/app/templates/views/service-settings.html @@ -117,7 +117,7 @@ ) %} {% call row() %} - {{ text_field('Letters') }} + {{ text_field('Send letters') }} {{ boolean_field('letter' in current_service.permissions) }} {{ edit_field('Change', url_for('.service_set_letters', service_id=current_service.id)) }} {% endcall %} diff --git a/tests/app/main/views/test_service_settings.py b/tests/app/main/views/test_service_settings.py index 10b268cb7..c21627da2 100644 --- a/tests/app/main/views/test_service_settings.py +++ b/tests/app/main/views/test_service_settings.py @@ -32,7 +32,7 @@ from tests.conftest import active_user_with_permissions, platform_admin_user 'Receive text messages Off Change', 'Label Value Action', - 'Letters Off Change', + 'Send letters Off Change', ]), (platform_admin_user, [ @@ -51,7 +51,7 @@ from tests.conftest import active_user_with_permissions, platform_admin_user 'Receive text messages Off Change', 'Label Value Action', - 'Letters Off Change', + 'Send letters Off Change', 'Label Value Action', 'Email branding GOV.UK Change', @@ -102,7 +102,7 @@ def test_should_show_overview( 'API endpoint for received text messages None Change', 'Label Value Action', - 'Letters Off Change', + 'Send letters Off Change', ]), (['email', 'sms'], [ @@ -120,7 +120,7 @@ def test_should_show_overview( 'Receive text messages Off Change', 'Label Value Action', - 'Letters Off Change', + 'Send letters Off Change', ]), ])