summaryrefslogtreecommitdiff
path: root/lib/python/qmk/tests
diff options
context:
space:
mode:
authorDrashna Jael're <drashna@live.com>2021-11-19 09:48:23 -0800
committerDrashna Jael're <drashna@live.com>2021-11-19 09:48:23 -0800
commit4be9919e9fd7c54c2e046b82e82f5fbc2fdd44e6 (patch)
tree5a56b18bd8aff40ec480833f8ba2f7c48ef3279a /lib/python/qmk/tests
parenta5155b98fb29ad4ea6de73f39a0d413d79883356 (diff)
parent94b535024642bab6705f1e08ec62680d8e49b62b (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.py4
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():