From 5edacd5766b2d79c1c4cf0fdbb90add4a1feccdf Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 31 Jan 2025 12:39:59 -0800 Subject: [PATCH] fix test --- app/job/rest.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/job/rest.py b/app/job/rest.py index d266a22bb..21ff38958 100644 --- a/app/job/rest.py +++ b/app/job/rest.py @@ -134,14 +134,12 @@ def get_recent_notifications_for_service_job(service_id, job_id): if "page_size" in data else current_app.config.get("PAGE_SIZE") ) - status = data["status"] if "status" in data else None paginated_notifications = get_recent_notifications_for_job( service_id, job_id, filter_dict=data, page=page, page_size=page_size, - status=status, ) kwargs = request.args.to_dict()