diff --git a/tests/unit/test_event_pipeline/test_mapping_handlers.py b/tests/unit/test_event_pipeline/test_mapping_handlers.py index a3a9f3df..1e6435fb 100644 --- a/tests/unit/test_event_pipeline/test_mapping_handlers.py +++ b/tests/unit/test_event_pipeline/test_mapping_handlers.py @@ -349,10 +349,13 @@ def test_forward_correctly(self): self.uinputs[self.keyboard_hash].write_history, [InputEvent.key(self.input_combination[1].code, 0)], ) - self.assertListEqual( - self.uinputs[self.gamepad_hash].write_history, - [InputEvent.key(self.input_combination[2].code, 0)], - ) + + # We do not expect a release event for this, because there was no key-down + # event when the combination triggered. + # self.assertListEqual( + # self.uinputs[self.gamepad_hash].write_history, + # [InputEvent.key(self.input_combination[2].code, 0)], + # ) def test_no_forwards(self): # if a combination is not triggered, nothing is released