From dd5fed4227f666cdf0a614486b40967be0b5cbea Mon Sep 17 00:00:00 2001 From: tassaron Date: Wed, 14 Jan 2026 16:06:20 -0500 Subject: fix CLI test (renamed `--debug` to `--verbose`) --- tests/test_commandline_parser.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/test_commandline_parser.py b/tests/test_commandline_parser.py index 5713286..8b07b8c 100644 --- a/tests/test_commandline_parser.py +++ b/tests/test_commandline_parser.py @@ -17,16 +17,16 @@ def test_commandline_help_if_bad_args(): command.parseArgs() -def test_commandline_launches_gui_if_debug(): +def test_commandline_launches_gui_if_verbose(): command = Command() - sys.argv = ["", "--debug"] + sys.argv = ["", "--verbose"] mode = command.parseArgs() assert mode == "GUI" -def test_commandline_launches_gui_if_debug_with_project(): +def test_commandline_launches_gui_if_verbose_with_project(): command = Command() - sys.argv = ["", "test", "--debug"] + sys.argv = ["", "test", "--verbose"] mode = command.parseArgs() assert mode == "GUI" -- cgit v1.2.3