From 5e8e6cdeda1a06339071520558ac3d7f1cae68e5 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Thu, 12 Sep 2019 16:54:13 +0100 Subject: [PATCH] Replace can't with cannot --- tests/app/main/views/test_agreement.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/app/main/views/test_agreement.py b/tests/app/main/views/test_agreement.py index 1f990aed5..42fe31862 100644 --- a/tests/app/main/views/test_agreement.py +++ b/tests/app/main/views/test_agreement.py @@ -303,8 +303,8 @@ def test_accept_agreement_page_populates( 'on_behalf_of_email': '', }, [ - 'Can’t be empty', - 'Can’t be empty', + 'Cannot be empty', + 'Cannot be empty', ], ), ( @@ -315,7 +315,7 @@ def test_accept_agreement_page_populates( 'on_behalf_of_email': '', }, [ - 'Can’t be empty', + 'Cannot be empty', ], ), ( @@ -326,7 +326,7 @@ def test_accept_agreement_page_populates( 'on_behalf_of_email': 'test@example.com', }, [ - 'Can’t be empty', + 'Cannot be empty', ], ),