Merge branch 'main' into nmb/field-validation

This commit is contained in:
Neil Martinsen-Burrell 2023-01-03 11:55:34 -06:00
commit 6bda7b7ead
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
23 changed files with 549 additions and 223 deletions

View file

@ -40,7 +40,7 @@ class TestFormValidation(TestCase):
form = DotGovDomainForm(data={"requested_domain": "top-level-agency.com"})
self.assertEqual(
form.errors["requested_domain"],
["Please enter a top-level domain name without any periods."],
["Please enter a domain without any periods."],
)
def test_requested_domain_invalid_characters(self):