summaryrefslogtreecommitdiff
path: root/lib/python/qmk/tests/test_cli_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/qmk/tests/test_cli_commands.py')
-rw-r--r--lib/python/qmk/tests/test_cli_commands.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py
index 2973f81702..92ec879312 100644
--- a/lib/python/qmk/tests/test_cli_commands.py
+++ b/lib/python/qmk/tests/test_cli_commands.py
@@ -113,21 +113,21 @@ def test_list_keymaps_community():
def test_list_keymaps_kb_only():
- result = check_subcommand('list-keymaps', '-kb', 'niu_mini')
+ result = check_subcommand('list-keymaps', '-kb', 'moonlander')
check_returncode(result)
- assert 'default' and 'via' in result.stdout
+ assert 'default' and 'oyrx' and 'webusb' in result.stdout
def test_list_keymaps_vendor_kb():
- result = check_subcommand('list-keymaps', '-kb', 'ai03/lunar')
+ result = check_subcommand('list-keymaps', '-kb', 'planck/ez')
check_returncode(result)
- assert 'default' and 'via' in result.stdout
+ assert 'default' and 'oryx' and 'webusb' in result.stdout
-def test_list_keymaps_vendor_kb_rev():
- result = check_subcommand('list-keymaps', '-kb', 'kbdfans/kbd67/mkiirgb/v2')
- check_returncode(result)
- assert 'default' and 'via' in result.stdout
+# def test_list_keymaps_vendor_kb_rev():
+# result = check_subcommand('list-keymaps', '-kb', 'kbdfans/kbd67/mkiirgb/v2')
+# check_returncode(result)
+# assert 'default' and 'via' in result.stdout
def test_list_keymaps_no_keyboard_found():