From 03e5064dbf006ae7e622d52d6f6718b58f2d4bc3 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 10 Mar 2025 08:57:14 -0700 Subject: [PATCH] fix test --- tests/app/celery/test_scheduled_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/celery/test_scheduled_tasks.py b/tests/app/celery/test_scheduled_tasks.py index 76395832e..bb416e7f4 100644 --- a/tests/app/celery/test_scheduled_tasks.py +++ b/tests/app/celery/test_scheduled_tasks.py @@ -583,7 +583,7 @@ def test_batch_insert_with_expired_notifications(mocker): rs.llen.assert_called_once_with("message_queue") rs.rpush.assert_called_once() requeued_notification = json.loads(rs.rpush.call_args[0][1]) - assert requeued_notification["id"] == 1 + assert requeued_notification["id"] == '1' def test_batch_insert_with_malformed_notifications(mocker):