This commit is contained in:
Jon Roberts 2023-02-27 11:48:22 -07:00
parent 2e002c81bf
commit dc7a4f4389
No known key found for this signature in database
GPG key ID: EED093582198B041
2 changed files with 1 additions and 4 deletions

View file

@ -401,9 +401,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
other_contacts_result = other_contacts_form.submit()
self.assertEquals(other_contacts_result.status_code, 302)
self.assertEquals(
other_contacts_result["Location"], "/register/anything_else/"
)
self.assertEquals(other_contacts_result["Location"], "/register/anything_else/")
num_pages_tested += 1
# ---- ANYTHING ELSE PAGE ----

View file

@ -426,7 +426,6 @@ class OtherContacts(ApplicationWizard):
forms = [forms.OtherContactsFormSet, forms.NoOtherContactsForm]
class AnythingElse(ApplicationWizard):
template_name = "application_anything_else.html"
forms = [forms.AnythingElseForm]