From 80575aeddef12b7d97dcdcfffb2e61af67f87f6e Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 8 Jul 2025 09:54:06 -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 b7541de26..3be4d4396 100644 --- a/tests/app/test_commands.py +++ b/tests/app/test_commands.py @@ -843,7 +843,7 @@ def test_clear_redis_list(monkeypatch, notify_api): return 0 mock_redis_store.llen = llen_side_effect - runner = notify_api.test_cli_runner + runner = notify_api.test_cli_runner() result = runner.invoke(clear_redis_list, ["-n", "foo"]) assert result.exit_code == 0 assert ltrim_calls == [("test_list", 1, 0)]