From b8d592ffcf405feb9b5b5c17ea1522186dba1f3b Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Thu, 6 Nov 2025 20:37:12 -0800 Subject: [PATCH] fix unit test --- tests/unit/main/test_main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/unit/main/test_main.py b/tests/unit/main/test_main.py index c8ccd671..32ff6d57 100644 --- a/tests/unit/main/test_main.py +++ b/tests/unit/main/test_main.py @@ -244,7 +244,9 @@ def test_no_positional_arg_command(mock_sys_exit, tv_show_config_path): main() assert mock_error.call_count == 1 - assert mock_error.call_args.args[0] == "Must provide one of the commands: sub, dl, view" + assert mock_error.call_args.args[0] == ( + "Must provide one of the commands: sub, dl, view, cli-to-sub" + ) def test_bad_config_path(mock_sys_exit):