From 49affd97727e16c8f2f50ca6e09e4cda483de7df Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 22 Aug 2025 10:49:32 -0700 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 409d4cb44..3c52ece48 100644 --- a/tests/app/job/test_rest.py +++ b/tests/app/job/test_rest.py @@ -562,9 +562,9 @@ def test_get_all_notifications_for_job_filtered_by_status( mock_s3.return_value = expected_phones mock_s3_personalisation = mocker.patch("app.job.rest.extract_personalisation") mock_s3_personalisation.return_value = expected_personalisation - sample_job.job_row_number = 0 - create_notification(job=sample_job, to_field="1", status=NotificationStatus.CREATED) + + create_notification(job=sample_job, job_row_number=0, to_field="1", status=NotificationStatus.CREATED) resp = admin_request.get( "job.get_all_notifications_for_service_job",