From 4e584ccd7211ca6e3db1c1c0e4a351bce8a6a1b3 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 11 Aug 2025 11:14:24 -0700 Subject: [PATCH] add tests --- tests/app/celery/test_tasks.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/app/celery/test_tasks.py b/tests/app/celery/test_tasks.py index 7fe8601f3..04dd2343b 100644 --- a/tests/app/celery/test_tasks.py +++ b/tests/app/celery/test_tasks.py @@ -1815,11 +1815,11 @@ def mock_notification(): @patch("app.notifications_dao.get_notifications_for_service") -@patch("app.s3.get_personalisation_from_s3") -@patch("app.s3.get_phone_number_from_s3") +@patch("app.aws.s3.get_personalisation_from_s3") +@patch("app.aws.s3.get_phone_number_from_s3") @patch("app.get_csv_location") -@patch("app.s3.s3upload") -@patch("app.s3.delete_s3_object") +@patch("app.aws.s3.s3upload") +@patch("app.aws.s3.delete_s3_object") @patch("app.current_app") def test_generate_notifications_report_normal_case( mock_current_app,