From 1f47d73599ce15ab660dcf7554aaa03372c9237c Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Thu, 18 Jul 2024 09:29:22 -0600 Subject: [PATCH] Update test_reports.py --- src/registrar/tests/test_reports.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/registrar/tests/test_reports.py b/src/registrar/tests/test_reports.py index 0e2b86d29..e444e222a 100644 --- a/src/registrar/tests/test_reports.py +++ b/src/registrar/tests/test_reports.py @@ -213,7 +213,7 @@ class ExportDataTestUserFacing(MockDb, MockEppLib): @less_console_noise_decorator def test_domain_data_type_user(self): """Shows security contacts, domain managers, so for the current user""" - self.maxDiff = None + # Add security email information self.domain_1.name = "defaultsecurity.gov" self.domain_1.save() @@ -257,6 +257,7 @@ class ExportDataTestUserFacing(MockDb, MockEppLib): # spaces and leading/trailing whitespace csv_content = csv_content.replace(",,", "").replace(",", "").replace(" ", "").replace("\r\n", "\n").strip() expected_content = expected_content.replace(",,", "").replace(",", "").replace(" ", "").strip() + self.maxDiff = None self.assertEqual(csv_content, expected_content) @@ -272,7 +273,7 @@ class ExportDataTestAdmin(MockDb, MockEppLib): @less_console_noise_decorator def test_domain_data_type(self): """Shows security contacts, domain managers, so""" - self.maxDiff = None + # Add security email information self.domain_1.name = "defaultsecurity.gov" self.domain_1.save()