From f24fd1f510a985847e5322b791281dbe5548d3ee Mon Sep 17 00:00:00 2001 From: Rachid Mrad Date: Wed, 1 May 2024 18:46:21 -0400 Subject: [PATCH] fix tests --- src/registrar/tests/test_admin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index 49f3f681a..8ed966fc4 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -2411,7 +2411,7 @@ class TestDomainRequestAdmin(MockEppLib): self.assertContains(response, _domain_request.requested_domain.name) # Test if the page has the right CISA region - expected_html = '
' "CISA region: N/A" "
" + expected_html = '
CISA region: N/A
' # Remove whitespace from expected_html expected_html = "".join(expected_html.split()) @@ -2442,7 +2442,7 @@ class TestDomainRequestAdmin(MockEppLib): self.assertContains(response, _domain_request.requested_domain.name) # Test if the page has the right CISA region - expected_html = '
' 'CISA region: 2' "
" + expected_html = '
CISA region: 2
' # Remove whitespace from expected_html expected_html = "".join(expected_html.split())