From 01d17269f35b7e6e1666a0985e46632c40995d70 Mon Sep 17 00:00:00 2001 From: David Kennedy Date: Fri, 5 Jan 2024 06:12:06 -0500 Subject: [PATCH] account for apostrophes in tests --- src/registrar/tests/test_forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registrar/tests/test_forms.py b/src/registrar/tests/test_forms.py index e0afb2d71..e42d976d3 100644 --- a/src/registrar/tests/test_forms.py +++ b/src/registrar/tests/test_forms.py @@ -42,7 +42,7 @@ class TestFormValidation(MockEppLib): form = CurrentSitesForm(data={"website": "nah"}) self.assertEqual( form.errors["website"], - ["Enter your organization's current website in the required format, like www.city.com."], + ["Enter your organization’s current website in the required format, like www.city.com."], ) def test_website_valid(self):