We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5701067 commit c0924e6Copy full SHA for c0924e6
1 file changed
Assets/Tests/InputSystem/CoreTests_Events.cs
@@ -1580,7 +1580,7 @@ public void Events_HandledEventsShouldNotTriggerActionsWhenSwitchingDevices()
1580
// Step 4: Verify state is synchronized despite suppression — device state should
1581
// reflect the press even though action notifications were suppressed.
1582
Assert.That(gamepad.buttonSouth.isPressed, Is.True, "Device state should be updated even for handled events");
1583
- Assert.That(keyboard.spaceKey.isPressed, Is.False, "Keyboard key should reflect released state");
+ Assert.That(keyboard.spaceKey.isPressed, Is.True, "Keyboard state should reflect the handled press (state propagates)");
1584
}
1585
1586
[Test]
0 commit comments