From eaebf1167d92cfa0652dc70f894ea35cbab6d98f Mon Sep 17 00:00:00 2001 From: Jimmy Royer Date: Thu, 26 Oct 2023 16:58:57 -0400 Subject: [PATCH] Changed test for correct value of retry period for sms high --- tests/app/notifications/test_process_notification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/notifications/test_process_notification.py b/tests/app/notifications/test_process_notification.py index 25aa093630..20b0a6962f 100644 --- a/tests/app/notifications/test_process_notification.py +++ b/tests/app/notifications/test_process_notification.py @@ -1105,7 +1105,7 @@ def test_db_save_and_send_notification_throws_exception_deletes_notification( (EMAIL_TYPE, PRIORITY, 48, 300), (SMS_TYPE, BULK, 48, 300), (SMS_TYPE, NORMAL, 48, 300), - (SMS_TYPE, PRIORITY, 48, 26), + (SMS_TYPE, PRIORITY, 48, 25), ], ) def test_delivery_task_parameters(self, notification_type, process_type, expected_retry, expected_retry_period):