Forgot to add the test action in the help string
Signed-off-by: Jean-Marc Eurin <jmeurin@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@1971 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/cli/atest_unittest.py b/cli/atest_unittest.py
index bc8f5f1..f0f1c0b 100755
--- a/cli/atest_unittest.py
+++ b/cli/atest_unittest.py
@@ -26,7 +26,7 @@
def test_main_help(self):
"""Main help level"""
self._test_help(argv=['atest'],
- out_words_ok=['usage: atest [acl|host|job|label|user] '
+ out_words_ok=['usage: atest [acl|host|job|label|test|user] '
'[action] [options]'],
err_words_ok=[])
@@ -49,7 +49,7 @@
def test_main_no_topic(self):
self.run_cmd(['atest'], exit_code=1,
out_words_ok=['usage: atest '
- '[acl|host|job|label|user] '
+ '[acl|host|job|label|test|user] '
'[action] [options]'],
err_words_ok=['No topic argument'])
@@ -57,7 +57,7 @@
def test_main_bad_topic(self):
self.run_cmd(['atest', 'bad_topic'], exit_code=1,
out_words_ok=['usage: atest [acl|host|job|'
- 'label|user] [action] [options]'],
+ 'label|test|user] [action] [options]'],
err_words_ok=['Invalid topic bad_topic\n'])