diff --git a/app/templates/views/service-settings.html b/app/templates/views/service-settings.html index aba1b0bd5..ddce1b7d1 100644 --- a/app/templates/views/service-settings.html +++ b/app/templates/views/service-settings.html @@ -206,7 +206,7 @@
{% if current_user.has_permissions('manage_service') %} To remove these restrictions, you can send us a - request to go live. + request to go live. {% else %} Your service manager can ask to have these restrictions removed. {% endif %} diff --git a/tests/app/main/views/service_settings/test_service_settings.py b/tests/app/main/views/service_settings/test_service_settings.py index d14fbadf6..3fb81b231 100644 --- a/tests/app/main/views/service_settings/test_service_settings.py +++ b/tests/app/main/views/service_settings/test_service_settings.py @@ -367,7 +367,8 @@ def test_show_restricted_service( if expected_link: assert request_to_live_link.text.strip() == 'request to go live' - assert request_to_live_link['href'] == url_for('main.request_to_go_live', service_id=SERVICE_ONE_ID) + email_address = 'notify-support@gsa.gov' + assert request_to_live_link['href'] == f'mailto:{email_address}' else: assert not request_to_live_link