From 2fbf837168b1becc3f0a1a2d64efdfdca66580eb Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 30 Jan 2025 16:23:39 -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 1d32ba992..f8c796885 100644 --- a/tests/app/job/test_rest.py +++ b/tests/app/job/test_rest.py @@ -516,9 +516,9 @@ def test_get_recent_notifications_for_job_in_reverse_order_of_job_number( for n in resp["notifications"]: print(n) assert resp["notifications"][0]["status"] == "failed" - assert resp["notifications"][0]["job_row_number"] == "3" + assert resp["notifications"][0]["job_row_number"] == "7" assert resp["notifications"][1]["status"] == "delivered" - assert resp["notifications"][1]["job_row_number"] == "2" + assert resp["notifications"][1]["job_row_number"] == "5" @pytest.mark.parametrize(