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() other_contacts_result = other_contacts_form.submit()
self.assertEquals(other_contacts_result.status_code, 302) self.assertEquals(other_contacts_result.status_code, 302)
self.assertEquals( self.assertEquals(other_contacts_result["Location"], "/register/anything_else/")
other_contacts_result["Location"], "/register/anything_else/"
)
num_pages_tested += 1 num_pages_tested += 1
# ---- ANYTHING ELSE PAGE ---- # ---- ANYTHING ELSE PAGE ----

View file

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