diff options
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() { |
