From 3f1a8b4ef597cb3006ec6e09ec8573694ba075b6 Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Tue, 28 Nov 2023 12:38:58 -0700 Subject: [PATCH] Fix test cases --- src/registrar/tests/test_reports.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/registrar/tests/test_reports.py b/src/registrar/tests/test_reports.py index ff734193d..cb1d6a0b9 100644 --- a/src/registrar/tests/test_reports.py +++ b/src/registrar/tests/test_reports.py @@ -137,7 +137,6 @@ class CsvReportsTest(TestCase): def test_load_federal_report(self): """Tests the current-federal api link""" - self.maxDiff = None request = self.factory.get("/fake-path") response = get_current_federal(request, file_path="registrar/tests/data/fake_current_federal.csv") # Check that the response has status code 200 @@ -147,7 +146,7 @@ class CsvReportsTest(TestCase): expected_file_content = ( "Domain name,Domain type,Agency,Organization name,City,State,Security Contact Email\n" - "cdomain1.gov,Federal - Executive,World War I Centennial Commission,,,, \n" + "cdomain1.gov,Federal - Executive,World War I Centennial Commission,,,,\n" "ddomain3.gov,Federal,Armed Forces Retirement Home,,,," ) @@ -155,7 +154,6 @@ class CsvReportsTest(TestCase): def test_load_full_report(self): """Tests the current-federal api link""" - self.maxDiff = None request = self.factory.get("/fake-path") response = get_current_full(request, file_path="registrar/tests/data/fake_current_full.csv") # Check that the response has status code 200