From 8502b6c443927aafdc1471c85b87bda622c25f8e Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 22 Aug 2025 08:31:06 -0700 Subject: [PATCH] fix test --- tests/app/job/test_rest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/app/job/test_rest.py b/tests/app/job/test_rest.py index 0a6fb6e34..f3a5b739e 100644 --- a/tests/app/job/test_rest.py +++ b/tests/app/job/test_rest.py @@ -943,6 +943,8 @@ def create_10_jobs(template): def test_get_all_notifications_for_job_returns_csv_format( admin_request, sample_notification_with_job, mocker ): + mock_job = mocker.patch("app.job.rest.get_job_from_s3") + mock_job.return_value = None mock_s3 = mocker.patch("app.job.rest.extract_phones") mock_s3.return_value = {0: "15555555555"}