From 5b616a073409e3faff2cc8a217b3b13f167ea833 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Fri, 13 Sep 2019 12:59:14 +0100 Subject: [PATCH] Replace haven't with have not --- tests/app/main/views/test_accept_invite.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/app/main/views/test_accept_invite.py b/tests/app/main/views/test_accept_invite.py index cebb07892..791d9731e 100644 --- a/tests/app/main/views/test_accept_invite.py +++ b/tests/app/main/views/test_accept_invite.py @@ -92,7 +92,7 @@ def test_if_existing_user_accepts_twice_they_redirect_to_sign_in( page.select('main p')[0].text.strip(), ) == ( 'You need to sign in again', - 'We signed you out because you haven’t used Notify for a while.', + 'We signed you out because you have not used Notify for a while.', ) @@ -191,7 +191,7 @@ def test_existing_user_of_service_get_redirected_to_signin( page.select('main p')[0].text.strip(), ) == ( 'You need to sign in again', - 'We signed you out because you haven’t used Notify for a while.', + 'We signed you out because you have not used Notify for a while.', ) assert mock_accept_invite.call_count == 1 @@ -229,7 +229,7 @@ def test_existing_signed_out_user_accept_invite_redirects_to_sign_in( page.select('main p')[0].text.strip(), ) == ( 'You need to sign in again', - 'We signed you out because you haven’t used Notify for a while.', + 'We signed you out because you have not used Notify for a while.', )