diff --git a/src/registrar/tests/test_reports.py b/src/registrar/tests/test_reports.py index bdfddf534..7337db15d 100644 --- a/src/registrar/tests/test_reports.py +++ b/src/registrar/tests/test_reports.py @@ -697,7 +697,7 @@ class ExportDataTest(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() - print(f"what is the actual content {csv_content}") + self.assertEqual(csv_content, expected_content)