diff options
Diffstat (limited to 'lib/python/qmk/tests/test_cli_commands.py')
-rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index bb77952fa..a2595eb78 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py | |||
@@ -7,7 +7,8 @@ def check_subcommand(command, *args): | |||
7 | 7 | ||
8 | 8 | ||
9 | def test_cformat(): | 9 | def test_cformat(): |
10 | assert check_subcommand('cformat', 'tmk_core/common/keyboard.c').returncode == 0 | 10 | result = check_subcommand('cformat', 'quantum/matrix.c') |
11 | assert result.returncode == 0 | ||
11 | 12 | ||
12 | 13 | ||
13 | def test_compile(): | 14 | def test_compile(): |