From 9d365fbce10252680c16addef6c7e4ffd684a0ac Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 1 Jul 2025 11:58:54 -0700 Subject: [PATCH] more tests --- tests/app/celery/test_nightly_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/celery/test_nightly_tasks.py b/tests/app/celery/test_nightly_tasks.py index 1b5a89488..d6edebc6a 100644 --- a/tests/app/celery/test_nightly_tasks.py +++ b/tests/app/celery/test_nightly_tasks.py @@ -440,7 +440,7 @@ def test_delete_notifications_logs_when_deletion_occurs(): with patch( "app.utils.utc_now", side_effect=[fake_start_time, fake_end_time] ), patch( - "app.dao.notifications_dao.move_notifications_to_notification_history", + "app.celery.nightly_tasks.move_notifications_to_notification_history", return_value=5, ) as mock_move, patch( "app.celery.nightly_tasks.current_app.logger.info"