diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-04 21:17:00 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-04 21:17:00 -0400 |
commit | 0db85b96511b527c3c7c23c6dd638484bcc6eadd (patch) | |
tree | ff8e087e5d11c0ae919b8b006f2f054f9aec26ce /test | |
parent | dc11ac5dfc25085dd25b88c0b165da0dc525e3f2 (diff) | |
download | python-coveragepy-0db85b96511b527c3c7c23c6dd638484bcc6eadd.tar.gz |
Help should focus on the new command syntax but also have a way to get help on the old.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_cmdline.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_cmdline.py b/test/test_cmdline.py index 7e7cba2..db3c389 100644 --- a/test/test_cmdline.py +++ b/test/test_cmdline.py @@ -276,8 +276,8 @@ class ClassicCmdLineTest(CmdLineTest): def testHelp(self): # coverage -h - self.cmd_help("-h", topic="classic_usage", ret=OK) - self.cmd_help("--help", topic="classic_usage", ret=OK) + self.cmd_help("-h", topic="help", ret=OK) + self.cmd_help("--help", topic="help", ret=OK) ## Error cases |