diff --git a/app/templates/views/choose-account.html b/app/templates/views/choose-account.html index 7f7d793d9..a205284c2 100644 --- a/app/templates/views/choose-account.html +++ b/app/templates/views/choose-account.html @@ -36,7 +36,9 @@ {% endif %} {% if can_add_service %} - Add a new service… +
+ Add a new service +
{% endif %} {% endblock %} diff --git a/tests/app/main/views/accounts/test_choose_accounts.py b/tests/app/main/views/accounts/test_choose_accounts.py index bd0f0352f..f9d928232 100644 --- a/tests/app/main/views/accounts/test_choose_accounts.py +++ b/tests/app/main/views/accounts/test_choose_accounts.py @@ -102,7 +102,7 @@ def test_choose_account_should_show_choose_accounts_page_if_no_services( assert len(links) == 1 add_service_link = links[0] assert normalize_spaces(page.h1.text) == 'Choose service' - assert normalize_spaces(add_service_link.text) == 'Add a new service…' + assert normalize_spaces(add_service_link.text) == 'Add a new service' assert add_service_link['href'] == url_for('main.add_service')