diff options
author | Drashna Jael're <drashna@live.com> | 2021-11-19 09:48:23 -0800 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2021-11-19 09:48:23 -0800 |
commit | 4be9919e9fd7c54c2e046b82e82f5fbc2fdd44e6 (patch) | |
tree | 5a56b18bd8aff40ec480833f8ba2f7c48ef3279a /lib/python/qmk/tests | |
parent | a5155b98fb29ad4ea6de73f39a0d413d79883356 (diff) | |
parent | 94b535024642bab6705f1e08ec62680d8e49b62b (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python/qmk/tests')
-rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index 9f2c258ab4..1e3c64e735 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py @@ -81,9 +81,9 @@ def test_hello(): def test_format_python(): - result = check_subcommand('format-python', '--dry-run') + result = check_subcommand('format-python', '-n', '-a') check_returncode(result) - assert 'Python code in `lib/python` is correctly formatted.' in result.stdout + assert 'Successfully formatted the python code.' in result.stdout def test_list_keyboards(): |