From 92f1a0dab4d551e1117713d3e79a1775cbcaef09 Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Mon, 1 Apr 2024 15:47:15 -0600 Subject: [PATCH] Update test_admin.py --- src/registrar/tests/test_admin.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index 3999acc4e..b73d9bce1 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -1324,7 +1324,7 @@ class TestDomainRequestAdmin(MockEppLib): self.assertContains(response, "Testy2 Tester2") # == Check for the authorizing_official == # - expected_email = "testy@town.com" + expected_ao_fields = [ # Field, expected value ("title", "Chief Tester"), @@ -1338,7 +1338,7 @@ class TestDomainRequestAdmin(MockEppLib): self.assertContains(response, "Testy Tester", count=5) # == Test the other_employees field == # - expected_email = "testy@town.com" + expected_other_employees_fields = [ # Field, expected value ("title", "Another Tester"), @@ -2052,7 +2052,7 @@ class TestDomainInformationAdmin(TestCase): self.assertContains(response, "Testy2 Tester2") # == Check for the authorizing_official == # - expected_email = "testy@town.com" + expected_ao_fields = [ # Field, expected value ("title", "Chief Tester"), @@ -2066,7 +2066,7 @@ class TestDomainInformationAdmin(TestCase): self.assertContains(response, "Testy Tester", count=5) # == Test the other_employees field == # - expected_email = "testy@town.com" + expected_other_employees_fields = [ # Field, expected value ("title", "Another Tester"),