From 74e9b343fd770345532ec03053e7870bd15b3d91 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Fri, 13 Sep 2019 12:59:52 +0100 Subject: [PATCH] Replace haven't with have not --- tests/app/main/views/test_sign_in.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/main/views/test_sign_in.py b/tests/app/main/views/test_sign_in.py index a4d07eacb..de396ca8c 100644 --- a/tests/app/main/views/test_sign_in.py +++ b/tests/app/main/views/test_sign_in.py @@ -30,7 +30,7 @@ def test_render_sign_in_template_for_new_user( def test_sign_in_explains_session_timeout(client): response = client.get(url_for('main.sign_in', next='/foo')) assert response.status_code == 200 - assert 'We signed you out because you haven’t used Notify for a while.' in response.get_data(as_text=True) + assert 'We signed you out because you have not used Notify for a while.' in response.get_data(as_text=True) def test_sign_in_explains_other_browser(logged_in_client, api_user_active, mocker):