From d52e5beced3f49ebfaf71b877555f59d98a30576 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Sat, 6 Sep 2025 18:32:41 +0200 Subject: build: release generator --- src/test/kotlin/features/macros/KeyComboTrieCreation.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/test/kotlin/features/macros') 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() { -- cgit