From e59e3429e4cd73822296dd7606ca29a9ed28611e Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 30 Jan 2025 14:30:06 -0800 Subject: [PATCH] fix test --- app/dao/notifications_dao.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/dao/notifications_dao.py b/app/dao/notifications_dao.py index 0e1e2ac66..418f33ff1 100644 --- a/app/dao/notifications_dao.py +++ b/app/dao/notifications_dao.py @@ -276,7 +276,7 @@ def get_recent_notifications_for_job( stmt = select(Notification).where( Notification.service_id == service_id, Notification.job_id == job_id, - Notification.status in [NotificationStatus.FAILED, Notification.DELIVERED], + Notification.status in [NotificationStatus.FAILED, NotificationStatus.DELIVERED], ) stmt = _filter_query(stmt, filter_dict) stmt = stmt.order_by(desc(Notification.job_row_number))