From 328c0c0816866f418835c93c9f5ed94c986e471c Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Tue, 28 Nov 2023 12:08:57 -0700 Subject: [PATCH] Update test_reports.py --- src/registrar/tests/test_reports.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/registrar/tests/test_reports.py b/src/registrar/tests/test_reports.py index 160f80ef9..9f118a021 100644 --- a/src/registrar/tests/test_reports.py +++ b/src/registrar/tests/test_reports.py @@ -145,8 +145,8 @@ class CsvReportsTest(TestCase): # Check that the response contains what we expect file_content = b"".join(response.streaming_content).decode("utf-8") expected_file_content = ( - "Domain name,Domain type,Agency,Organization name,City,State,Security Contact Email\r\n" - "cdomain1.gov,Federal - Executive,World War I Centennial Commission,,,,\r\n" + "Domain name,Domain type,Agency,Organization name,City,State,Security Contact Email \r\n" + "cdomain1.gov,Federal - Executive,World War I Centennial Commission,,,, \r\n" "ddomain3.gov,Federal,Armed Forces Retirement Home,,,," ) @@ -163,8 +163,8 @@ class CsvReportsTest(TestCase): file_content = b"".join(response.streaming_content).decode("utf-8") expected_file_content = ( "Domain name,Domain type,Agency,Organization name,City,State,Security Contact Email\r\n" - "cdomain1.gov,Federal - Executive,World War I Centennial Commission,,,,\r\n" - "ddomain3.gov,Federal,Armed Forces Retirement Home,,,,\r\n" + "cdomain1.gov,Federal - Executive,World War I Centennial Commission,,,, \r\n" + "ddomain3.gov,Federal,Armed Forces Retirement Home,,,, \r\n" "adomain2.gov,Interstate,,,,," )