Confirm your mobile number
-
We've sent you a confirmation code by text message.
+
We’ve sent you a security code by text message.
-
diff --git a/tests/app/main/views/test_code_not_received.py b/tests/app/main/views/test_code_not_received.py
index 271b6ee81..f7d5f89a7 100644
--- a/tests/app/main/views/test_code_not_received.py
+++ b/tests/app/main/views/test_code_not_received.py
@@ -42,7 +42,7 @@ def test_should_render_correct_resend_template_for_active_user(app_,
assert response.status_code == 200
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
- assert page.h1.string == 'Resend verification code'
+ assert page.h1.string == 'Resend security code'
# there shouldn't be a form for updating mobile number
assert page.find('form') is None
diff --git a/tests/app/main/views/test_two_factor.py b/tests/app/main/views/test_two_factor.py
index 367941c28..cf234483f 100644
--- a/tests/app/main/views/test_two_factor.py
+++ b/tests/app/main/views/test_two_factor.py
@@ -17,7 +17,7 @@ def test_should_render_two_factor_page(app_,
'email': api_user_active.email_address}
response = client.get(url_for('main.two_factor'))
assert response.status_code == 200
- assert '''We’ve sent you a text message with a verification code.''' in response.get_data(as_text=True)
+ assert '''We’ve sent you a text message with a security code.''' in response.get_data(as_text=True)
def test_should_login_user_and_redirect_to_service_dashboard(app_,
diff --git a/tests/app/main/views/test_verify.py b/tests/app/main/views/test_verify.py
index 2a7599890..4aaab069b 100644
--- a/tests/app/main/views/test_verify.py
+++ b/tests/app/main/views/test_verify.py
@@ -18,7 +18,7 @@ def test_should_return_verify_template(app_,
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
assert page.h1.text == 'Check your phone'
message = page.find_all('p')[1].text
- assert message == "We’ve sent you a text message with a verification code."
+ assert message == "We’ve sent you a text message with a security code."
def test_should_redirect_to_add_service_when_sms_code_is_correct(app_,