summaryrefslogtreecommitdiff
path: root/tests/test_completion.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2018-09-26 17:12:04 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2018-09-26 17:12:04 -0400
commit32512dc80da639b621dcac26467c5b1e75db2af0 (patch)
tree3d0195970d451ede5fb91260cecc9f2b4df1ddc3 /tests/test_completion.py
parent58ba2390dc823b95b8d97f67d518b4a50e22be89 (diff)
downloadcmd2-git-32512dc80da639b621dcac26467c5b1e75db2af0.tar.gz
Converted help to argparse
Diffstat (limited to 'tests/test_completion.py')
-rw-r--r--tests/test_completion.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_completion.py b/tests/test_completion.py
index 40299954..945f68ca 100644
--- a/tests/test_completion.py
+++ b/tests/test_completion.py
@@ -835,7 +835,7 @@ class SubcommandsWithUnknownExample(cmd2.Cmd):
func(self, args)
else:
# No subcommand was provided, so call help
- self.do_help(['base'])
+ self.do_help('base')
@pytest.fixture