From b30e0173c4497527dc4f9cb1bb2348d971de7ee4 Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Wed, 2 Oct 2024 11:58:00 -0600 Subject: [PATCH] rename --- src/registrar/tests/test_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/registrar/tests/test_api.py b/src/registrar/tests/test_api.py index 22ad2b376..307a5553f 100644 --- a/src/registrar/tests/test_api.py +++ b/src/registrar/tests/test_api.py @@ -216,7 +216,7 @@ class GetRejectionEmailForUserJsonTest(TestCase): self.assertIn("we could not verify the organizational", data["email"]) @less_console_noise_decorator - def test_get_action_needed_email_for_user_json_analyst(self): + def test_get_rejected_email_for_user_json_analyst(self): """Test that an analyst can fetch the action needed email.""" self.client.force_login(self.analyst_user) @@ -233,7 +233,7 @@ class GetRejectionEmailForUserJsonTest(TestCase): self.assertIn("we could not verify the organizational", data["email"]) @less_console_noise_decorator - def test_get_action_needed_email_for_user_json_regular(self): + def test_get_rejected_email_for_user_json_regular(self): """Test that a regular user receives a 403 with an error message.""" p = "password" self.client.login(username="testuser", password=p)