summaryrefslogtreecommitdiff
path: root/lib/python/qmk/tests
diff options
context:
space:
mode:
authorDrashna Jael're <drashna@live.com>2021-07-08 21:16:31 -0700
committerDrashna Jael're <drashna@live.com>2021-07-08 21:16:31 -0700
commit4d0291668b0feb3e54b03011e9a9b4349ed83d99 (patch)
tree8a58c5d0d3030d7400c6670a97e463343c52ae46 /lib/python/qmk/tests
parent996a19ee7ba3308e17fd347afde0b135852835cc (diff)
parenta913db63aa41f7d1c939d735fbd316a85225d935 (diff)
Merge tag '0.13.13' into firmware_21
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 a7b70a7d99..afdbc81429 100644
--- a/lib/python/qmk/tests/test_cli_commands.py
+++ b/lib/python/qmk/tests/test_cli_commands.py
@@ -7,7 +7,7 @@ is_windows = 'windows' in platform.platform().lower()
def check_subcommand(command, *args):
- cmd = ['bin/qmk', command, *args]
+ cmd = ['qmk', command, *args]
result = cli.run(cmd, stdin=DEVNULL, combined_output=True)
return result
@@ -16,7 +16,7 @@ def check_subcommand_stdin(file_to_read, command, *args):
"""Pipe content of a file to a command and return output.
"""
with open(file_to_read, encoding='utf-8') as my_file:
- cmd = ['bin/qmk', command, *args]
+ cmd = ['qmk', command, *args]
result = cli.run(cmd, stdin=my_file, combined_output=True)
return result