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 | 12d797137057ea428148fb4002745adcbe31daaa (patch) | |
tree | fa1a8f100d18451e1782537c451886c25623ce7c /test/test_cmdline.py | |
parent | 610eb85f1885a43c3331437dc8c88da388739c22 (diff) | |
download | python-coveragepy-git-12d797137057ea428148fb4002745adcbe31daaa.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/test_cmdline.py')
-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 7e7cba2a..db3c3896 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 |