From 28470468e25c84ac689dd43d3fdc9dcf2d18838f Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 10 Jan 2025 16:38:37 -0800 Subject: [PATCH] fix uuid --- tests/app/service/send_notification/test_send_notification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/service/send_notification/test_send_notification.py b/tests/app/service/send_notification/test_send_notification.py index 80f14a9c8..dab4ca43f 100644 --- a/tests/app/service/send_notification/test_send_notification.py +++ b/tests/app/service/send_notification/test_send_notification.py @@ -796,7 +796,7 @@ def test_should_persist_notification( ], ) - mocked.assert_called_once_with([fake_uuid], queue=queue_name) + mocked.assert_called_once_with([fake_uuid], queue=queue_name, countdown=30) assert response.status_code == 201 notification = notifications_dao.get_notification_by_id(fake_uuid)