account for apostrophes in tests

This commit is contained in:
David Kennedy 2024-01-05 06:12:06 -05:00
parent 3ce4aa6b5f
commit 01d17269f3
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B

View file

@ -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 organizations current website in the required format, like www.city.com."],
)
def test_website_valid(self):