From 501f68ea77a02fe5afc124b24eafa176667769d2 Mon Sep 17 00:00:00 2001 From: Rachid Mrad Date: Wed, 1 May 2024 18:22:25 -0400 Subject: [PATCH] cleanup --- 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 00e6265a0..49f3f681a 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())