aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authortassaron2026-01-14 16:06:20 -0500
committertassaron2026-01-14 16:06:20 -0500
commitdd5fed4227f666cdf0a614486b40967be0b5cbea (patch)
treef5c96c96e12597e1093760828fc19f2d037e6cdb /tests
parent79f888cfb07723930c4c64bb10ffe068ab60971a (diff)
fix CLI test (renamed `--debug` to `--verbose`)
Diffstat (limited to 'tests')
-rw-r--r--tests/test_commandline_parser.py8
1 files changed, 4 insertions, 4 deletions
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"