diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/python/qmk/cli/new/keyboard.py | 2 | ||||
-rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/python/qmk/cli/new/keyboard.py b/lib/python/qmk/cli/new/keyboard.py index 8d4def1bef..d7f88db135 100644 --- a/lib/python/qmk/cli/new/keyboard.py +++ b/lib/python/qmk/cli/new/keyboard.py @@ -17,7 +17,7 @@ from qmk.json_encoders import InfoJSONEncoder from qmk.json_schema import deep_update, json_load from qmk.constants import MCU2BOOTLOADER -COMMUNITY = Path('layouts/default/') +COMMUNITY = Path('layouts/community/') TEMPLATE = Path('data/templates/keyboard/') # defaults diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index fde8b079a3..2f3d09723f 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py @@ -115,24 +115,24 @@ def test_list_keymaps_community(): def test_list_keymaps_kb_only(): - result = check_subcommand('list-keymaps', '-kb', 'contra') + result = check_subcommand('list-keymaps', '-kb', 'moonlander') check_returncode(result) assert 'default' in result.stdout - assert 'via' in result.stdout + assert 'oryx' 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' in result.stdout - assert 'via' in result.stdout + assert 'oryx' 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' in result.stdout - assert 'via' in result.stdout + assert 'oryx' in result.stdout def test_list_keymaps_no_keyboard_found(): |