summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMichael Abel <info@abel-ikt.de>2022-03-02 14:25:58 +0100
committerMichael Abel <info@abel-ikt.de>2022-03-02 14:25:58 +0100
commit1f0455b66099cd55f65672dddaa5dfa60d71048d (patch)
treeac031a511d496dd358135e2b24070ebd99b4bf8b /tests
parent1cb4c702407086fc74f3b8526017a86411e4ac3d (diff)
Check for OPTIONS in output after switching to clap
Diffstat (limited to 'tests')
-rw-r--r--tests/PySys/tedge/call_tedge_config_help/run.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/PySys/tedge/call_tedge_config_help/run.py b/tests/PySys/tedge/call_tedge_config_help/run.py
index cc6e2ee8..2706a6bf 100644
--- a/tests/PySys/tedge/call_tedge_config_help/run.py
+++ b/tests/PySys/tedge/call_tedge_config_help/run.py
@@ -9,7 +9,7 @@ Validate command line option help
Given a running system
When we call tedge help
Then we find the string USAGE: in the output
-Then we find the string FLAGS: in the output
+Then we find the string OPTIONS: in the output
Then we find the string SUBCOMMANDS: in the output
"""
@@ -27,5 +27,5 @@ class PySysTest(BaseTest):
def validate(self):
self.assertGrep("tedge.out", "USAGE:", contains=True)
- self.assertGrep("tedge.out", "FLAGS:", contains=True)
+ self.assertGrep("tedge.out", "OPTIONS:", contains=True)
self.assertGrep("tedge.out", "SUBCOMMANDS:", contains=True)