aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"