From 1d55e52751a9e2cffae6e21a346a61caba623a79 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 8 Jul 2025 10:07:37 -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 3be4d4396..d246edf56 100644 --- a/tests/app/test_commands.py +++ b/tests/app/test_commands.py @@ -844,7 +844,7 @@ def test_clear_redis_list(monkeypatch, notify_api): mock_redis_store.llen = llen_side_effect runner = notify_api.test_cli_runner() - result = runner.invoke(clear_redis_list, ["-n", "foo"]) + result = runner.invoke(clear_redis_list, ["-n", "test_list"]) assert result.exit_code == 0 assert ltrim_calls == [("test_list", 1, 0)] assert logger_info_calls == ["Cleared redis list test_list. Before: 5 after 0"]