diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py index 62155622b..e540e297d 100644 --- a/src/registrar/tests/test_views.py +++ b/src/registrar/tests/test_views.py @@ -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 ---- diff --git a/src/registrar/views/application.py b/src/registrar/views/application.py index 932d528b8..d5cef38c4 100644 --- a/src/registrar/views/application.py +++ b/src/registrar/views/application.py @@ -426,7 +426,6 @@ class OtherContacts(ApplicationWizard): forms = [forms.OtherContactsFormSet, forms.NoOtherContactsForm] - class AnythingElse(ApplicationWizard): template_name = "application_anything_else.html" forms = [forms.AnythingElseForm]