From 530fa9ec8be815bc047f20adc74867ecdab1a749 Mon Sep 17 00:00:00 2001 From: Rachid Mrad Date: Fri, 29 Dec 2023 23:18:29 -0500 Subject: [PATCH] fix view test after changing export file name --- src/registrar/tests/test_admin_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registrar/tests/test_admin_views.py b/src/registrar/tests/test_admin_views.py index d31fcbcbb..aa150d55c 100644 --- a/src/registrar/tests/test_admin_views.py +++ b/src/registrar/tests/test_admin_views.py @@ -38,5 +38,5 @@ class TestViews(TestCase): self.assertEqual(response["Content-Type"], "text/csv") # Check if the filename in the Content-Disposition header matches the expected pattern - expected_filename = f"growth-from-{start_date}-to-{end_date}.csv" + expected_filename = f"domain-growth-report-{start_date}-to-{end_date}.csv" self.assertIn(f'attachment; filename="{expected_filename}"', response["Content-Disposition"])