From 22cd7ad4c44695af46f99cba5bedc313b6f7cc22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Carden=CC=83a?= <35935591+luisecm@users.noreply.github.com> Date: Mon, 12 Feb 2024 17:11:40 -0600 Subject: [PATCH] test(update): update keys for custom keybind with 4 chars --- tests/specs/18-settings-keybinds.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/specs/18-settings-keybinds.spec.ts b/tests/specs/18-settings-keybinds.spec.ts index 4011659b3d..f3c2a4ad3f 100644 --- a/tests/specs/18-settings-keybinds.spec.ts +++ b/tests/specs/18-settings-keybinds.spec.ts @@ -155,15 +155,15 @@ export default async function settingsKeybindsTests() { // Now, change Hide/Focus Uplink Keybind by typing Ctrl + Shift + U await sendCustomKeybinds(4, 7, 65); await settingsKeybinds.editKeybind("hide-focus-uplink"); - // Type Ctrl + Alt + Shift + P - await sendCustomKeybinds(4, 3, 7, 60); + // Type Alt + Ctrl + Shift + P + await sendCustomKeybinds(3, 4, 7, 60); // Validate change was applied correctly to Hide/Focus Uplink Keybind const hideFocusUplinkKeybind = await settingsKeybinds.getKeybinds("hide-focus-uplink"); await expect(hideFocusUplinkKeybind).toEqual([ - "CONTROL", "ALT", + "CONTROL", "SHIFT", "P", ]);