diff options
| author | Linnea Gräf <nea@nea.moe> | 2025-09-06 18:32:41 +0200 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2025-09-06 18:35:13 +0200 |
| commit | d52e5beced3f49ebfaf71b877555f59d98a30576 (patch) | |
| tree | da68da13993950ad7f789d582e9ab0555f81e76b /src/test/kotlin/features/macros/KeyComboTrieCreation.kt | |
| parent | aa7a92e95d97a4b428ff685c6bdf1ab5fd3b3268 (diff) | |
| download | Firmament-d52e5beced3f49ebfaf71b877555f59d98a30576.tar.gz Firmament-d52e5beced3f49ebfaf71b877555f59d98a30576.tar.bz2 Firmament-d52e5beced3f49ebfaf71b877555f59d98a30576.zip | |
build: release generator
Diffstat (limited to 'src/test/kotlin/features/macros/KeyComboTrieCreation.kt')
| -rw-r--r-- | src/test/kotlin/features/macros/KeyComboTrieCreation.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/kotlin/features/macros/KeyComboTrieCreation.kt b/src/test/kotlin/features/macros/KeyComboTrieCreation.kt index f0e7a1b..c3372e4 100644 --- a/src/test/kotlin/features/macros/KeyComboTrieCreation.kt +++ b/src/test/kotlin/features/macros/KeyComboTrieCreation.kt @@ -12,9 +12,9 @@ import moe.nea.firmament.keybindings.SavedKeyBinding class KeyComboTrieCreation { val basicAction = CommandAction("ac Hello") - val aPress = SavedKeyBinding(InputUtil.GLFW_KEY_A) - val bPress = SavedKeyBinding(InputUtil.GLFW_KEY_B) - val cPress = SavedKeyBinding(InputUtil.GLFW_KEY_C) + val aPress = SavedKeyBinding.keyWithoutMods(InputUtil.GLFW_KEY_A) + val bPress = SavedKeyBinding.keyWithoutMods(InputUtil.GLFW_KEY_B) + val cPress = SavedKeyBinding.keyWithoutMods(InputUtil.GLFW_KEY_C) @Test fun testValidShortTrie() { |
