diff options
author | Zach White <skullydazed@gmail.com> | 2021-01-05 11:04:56 -0800 |
---|---|---|
committer | Zach White <skullydazed@gmail.com> | 2021-01-05 11:04:56 -0800 |
commit | cf2f13fc77e7d9371e845d8825f8ced974083c70 (patch) | |
tree | f51890908a1ed5ee749b167a6c85830472c7e379 /lib/python/qmk/tests/test_qmk_path.py | |
parent | e7db582e356a961ba608ef441f201d879ec8d740 (diff) | |
parent | 3d1e7bd36fee748b6bfaa89d4a14c3f4f841c0ca (diff) | |
download | qmk_firmware-cf2f13fc77e7d9371e845d8825f8ced974083c70.tar.gz qmk_firmware-cf2f13fc77e7d9371e845d8825f8ced974083c70.zip |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python/qmk/tests/test_qmk_path.py')
-rw-r--r-- | lib/python/qmk/tests/test_qmk_path.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/qmk/tests/test_qmk_path.py b/lib/python/qmk/tests/test_qmk_path.py index 74db7b3e26..4b5132f13d 100644 --- a/lib/python/qmk/tests/test_qmk_path.py +++ b/lib/python/qmk/tests/test_qmk_path.py @@ -4,9 +4,9 @@ from pathlib import Path import qmk.path -def test_keymap_onekey_pytest(): - path = qmk.path.keymap('handwired/onekey/pytest') - assert path.samefile('keyboards/handwired/onekey/keymaps') +def test_keymap_pytest_basic(): + path = qmk.path.keymap('handwired/pytest/basic') + assert path.samefile('keyboards/handwired/pytest/basic/keymaps') def test_normpath(): |