1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 12:42:31 +08:00

Update tests to match new behaviour

This commit is contained in:
Dean Herbert
2025-12-05 21:27:11 +09:00
Unverified
parent 8d33c35646
commit 1db4b897eb
@@ -67,7 +67,7 @@ namespace osu.Game.Tests.Visual.Settings
scrollToAndStartBinding("Increase volume");
AddStep("press shift", () => InputManager.PressKey(Key.ShiftLeft));
AddStep("release shift", () => InputManager.ReleaseKey(Key.ShiftLeft));
checkBinding("Increase volume", "LShift");
checkBinding("Increase volume", "Shift");
}
[Test]
@@ -77,7 +77,7 @@ namespace osu.Game.Tests.Visual.Settings
AddStep("press shift", () => InputManager.PressKey(Key.ShiftLeft));
AddStep("press k", () => InputManager.Key(Key.K));
AddStep("release shift", () => InputManager.ReleaseKey(Key.ShiftLeft));
checkBinding("Increase volume", "LShift-K");
checkBinding("Increase volume", "Shift-K");
}
[Test]