From 0d032cfeecf047293d369387cb52b6b8c2262e34 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 30 Jan 2025 15:35:18 -0800 Subject: [PATCH] fix test --- tests/app/job/test_rest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/job/test_rest.py b/tests/app/job/test_rest.py index 9dd2bc1da..9b797cf37 100644 --- a/tests/app/job/test_rest.py +++ b/tests/app/job/test_rest.py @@ -513,8 +513,8 @@ def test_get_recent_notifications_for_job_in_reverse_order_of_job_number( ) assert len(resp["notifications"]) == 2 - assert resp["notifications"][0]["notification_status"] == "failed" - assert resp["notifications"][1]["notification_status"] == "delivered" + assert resp["notifications"][0]["status"] == "failed" + assert resp["notifications"][1]["status"] == "delivered" @pytest.mark.parametrize(