From dee22b893babd3e38162260fdac4a92fb0d8f5c3 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 4 Mar 2025 10:48:09 -0800 Subject: [PATCH] fix test --- tests/app/dao/test_fact_notification_status_dao.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/app/dao/test_fact_notification_status_dao.py b/tests/app/dao/test_fact_notification_status_dao.py index fc027f711..9c58b0b32 100644 --- a/tests/app/dao/test_fact_notification_status_dao.py +++ b/tests/app/dao/test_fact_notification_status_dao.py @@ -74,9 +74,10 @@ def test_fetch_notification_status_for_service_by_month(notify_db_session): fetch_notification_status_for_service_by_month( date(2018, 1, 1), date(2018, 2, 28), service_1.id ), - key=lambda x: (x.month, x.notification_type, x.notification_status), + key=lambda x: (x.month, x.notification_status), ) + print(results) assert len(results) == 3 assert results[1].month.date() == date(2018, 1, 1)