diff options
| author | Ryan <fauxpark@gmail.com> | 2024-11-21 22:57:36 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-21 22:57:36 +1100 |
| commit | 65a8a5ff69289a5cb8fce6555b774573e4452a79 (patch) | |
| tree | 24d26aceb9f86e54b6e2cc110a8672f334f7182a /lib/python/qmk/tests/test_cli_commands.py | |
| parent | c7a04bd9305c337e9190d5ebdd368c4af49adc43 (diff) | |
`qmk find`: expand operator support (#24468)
Diffstat (limited to 'lib/python/qmk/tests/test_cli_commands.py')
| -rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index f18bd12f82..b10fd8d19d 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py | |||
| @@ -390,7 +390,7 @@ def test_find_contains(): | |||
| 390 | def test_find_multiple_conditions(): | 390 | def test_find_multiple_conditions(): |
| 391 | # this is intended to match at least 'crkbd/rev1' | 391 | # this is intended to match at least 'crkbd/rev1' |
| 392 | result = check_subcommand( | 392 | result = check_subcommand( |
| 393 | 'find', '-f', 'exists(rgb_matrix.split_count)', '-f', 'contains(matrix_pins.cols, B1)', '-f', 'length(matrix_pins.cols, 6)', '-f', 'absent(eeprom.driver)', '-f', 'ws2812.pin=D3', '-p', 'rgb_matrix.split_count', '-p', 'matrix_pins.cols', '-p', | 393 | 'find', '-f', 'exists(rgb_matrix.split_count)', '-f', 'contains(matrix_pins.cols, B1)', '-f', 'length(matrix_pins.cols, 6)', '-f', 'absent(eeprom.driver)', '-f', 'ws2812.pin == D3', '-p', 'rgb_matrix.split_count', '-p', 'matrix_pins.cols', '-p', |
| 394 | 'eeprom.driver', '-p', 'ws2812.pin' | 394 | 'eeprom.driver', '-p', 'ws2812.pin' |
| 395 | ) | 395 | ) |
| 396 | check_returncode(result) | 396 | check_returncode(result) |
