diff options
Diffstat (limited to 'app/scripts')
-rw-r--r-- | app/scripts/west-commands.yml | 2 | ||||
-rw-r--r-- | app/scripts/west_commands/test.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/scripts/west-commands.yml b/app/scripts/west-commands.yml index 98e2899..75be89d 100644 --- a/app/scripts/west-commands.yml +++ b/app/scripts/west-commands.yml @@ -6,4 +6,4 @@ west-commands: commands: - name: test class: Test - help: run zmk testsuite
\ No newline at end of file + help: run ZMK testsuite diff --git a/app/scripts/west_commands/test.py b/app/scripts/west_commands/test.py index 26f95f7..b8f87c7 100644 --- a/app/scripts/west_commands/test.py +++ b/app/scripts/west_commands/test.py @@ -14,9 +14,9 @@ class Test(WestCommand): def __init__(self): super().__init__( 'test', # gets stored as self.name - 'run zmk testsuite', # self.help + 'run ZMK testsuite', # self.help # self.description: - dedent('''Run the zmk testsuite.''')) + dedent('''Run the ZMK testsuite.''')) def do_add_parser(self, parser_adder): parser = parser_adder.add_parser(self.name, |