From 41aad758ff913ab423d7ef64627525d242f15b8c Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 30 Jun 2025 11:25:04 -0700 Subject: [PATCH] more tests --- tests/app/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/test_commands.py b/tests/app/test_commands.py index 1ffa98c33..554277e2c 100644 --- a/tests/app/test_commands.py +++ b/tests/app/test_commands.py @@ -715,7 +715,7 @@ def test_associate_services_to_organizations(notify_api, mocker): def test_clear_templates_from_cache(mocker): mock_delete = mocker.patch( - "app.template.rest.redis_store.delete_by_pattern", return_value=3 + "app.commands.redis_store.delete_by_pattern", return_value=3 ) mock_logger = mocker.patch("app.template.rest.current_app.logger")