From adea22fe9f3f694f6c83b080e5a58c3775e04716 Mon Sep 17 00:00:00 2001 From: David Kennedy Date: Tue, 16 Jan 2024 15:30:23 -0500 Subject: [PATCH] linting --- src/registrar/tests/test_views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py index a2fc40377..4e2fab261 100644 --- a/src/registrar/tests/test_views.py +++ b/src/registrar/tests/test_views.py @@ -3087,7 +3087,7 @@ class TestDomainAuthorizingOfficial(TestDomainOverview): # ao_pk is the initial pk of the authorizing official. set it before update # to be able to verify after update that the same contact object is in place ao_pk = self.domain_information.authorizing_official.id - result = ao_form.submit() + ao_form.submit() # refresh domain information self.domain_information.refresh_from_db() @@ -3129,6 +3129,7 @@ class TestDomainAuthorizingOfficial(TestDomainOverview): self.assertEqual("Testy", other_contact.first_name) self.assertEqual(ao_pk, other_contact.id) + class TestDomainOrganization(TestDomainOverview): def test_domain_org_name_address(self): """Can load domain's org name and mailing address page."""