diff options
author | Ryan <fauxpark@gmail.com> | 2023-05-19 16:05:43 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 16:05:43 +1000 |
commit | dc75c23f5c4768d48e6e77fb4e795ff0e0ee2d7f (patch) | |
tree | 2e2a2f07c1de1242afcabf888bf08b1db3379cac /lib/python/qmk/tests | |
parent | 78afa1164dcae6b4acdac46d284850e6137fe41c (diff) |
CLI: Improve keymap folder resolution (#20981)
Diffstat (limited to 'lib/python/qmk/tests')
-rw-r--r-- | lib/python/qmk/tests/test_qmk_path.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/qmk/tests/test_qmk_path.py b/lib/python/qmk/tests/test_qmk_path.py index 4b5132f13d..cc068e39da 100644 --- a/lib/python/qmk/tests/test_qmk_path.py +++ b/lib/python/qmk/tests/test_qmk_path.py @@ -5,8 +5,8 @@ import qmk.path def test_keymap_pytest_basic(): - path = qmk.path.keymap('handwired/pytest/basic') - assert path.samefile('keyboards/handwired/pytest/basic/keymaps') + path = qmk.path.keymap('handwired/pytest/basic', 'default') + assert path.samefile('keyboards/handwired/pytest/basic/keymaps/default') def test_normpath(): |