lowercased ZIP

This commit is contained in:
David Kennedy 2024-10-03 12:21:05 -04:00
parent bb3ceb4dea
commit 360d0d4340
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
7 changed files with 9 additions and 9 deletions

View file

@ -33,7 +33,7 @@ class TestFormValidation(MockEppLib):
form = OrganizationContactForm(data={"zipcode": "nah"})
self.assertEqual(
form.errors["zipcode"],
["Enter a 5-digit or 9-digit ZIP code, like 12345 or 12345-6789."],
["Enter a 5-digit or 9-digit zip code, like 12345 or 12345-6789."],
)
def test_org_contact_zip_valid(self):