From 8479fb4264d63cd849156a1c652266285a076377 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Wed, 2 Jul 2025 10:56:30 -0700 Subject: [PATCH] more tests --- tests/app/notifications/test_receive_notification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/notifications/test_receive_notification.py b/tests/app/notifications/test_receive_notification.py index 9fc450595..04e3c6686 100644 --- a/tests/app/notifications/test_receive_notification.py +++ b/tests/app/notifications/test_receive_notification.py @@ -420,7 +420,7 @@ def test_receive_sns_sms_success(client, app): ) as mock_fetch_service, mock.patch( "app.notifications.receive_notifications.create_inbound_sms_object" ) as mock_create_inbound, mock.patch( - "app.notifications.receive_notifications.send_inbound_sms_to_service.apply_async" + "app.notifications.receive_notifications.tasks.send_inbound_sms_to_service.apply_async" ) as mock_task: mock_service = mock.MagicMock(id="service-id")