diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-09-28 21:26:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-28 21:26:24 -0400 |
commit | 61d5703cd3586b3460669a6260cf903c9863b240 (patch) | |
tree | 5b7f4893f7edfa60435946f1027b07933fe1b3cf /tests/test_argparse.py | |
parent | 87fdda149ade5c82d853334c87db0a2d11445594 (diff) | |
parent | 46bd94acbd10eced821827555a0ffd49a2f9cd92 (diff) | |
download | cmd2-git-61d5703cd3586b3460669a6260cf903c9863b240.tar.gz |
Merge pull request #553 from python-cmd2/argparse_conversion
Argparse conversion
Diffstat (limited to 'tests/test_argparse.py')
-rw-r--r-- | tests/test_argparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_argparse.py b/tests/test_argparse.py index 0939859a..fdd16bcc 100644 --- a/tests/test_argparse.py +++ b/tests/test_argparse.py @@ -217,7 +217,7 @@ class SubcommandApp(cmd2.Cmd): func(self, args) else: # No subcommand was provided, so call help - self.do_help(['base']) + self.do_help('base') @pytest.fixture def subcommand_app(): |