Skip to content

Commit

Permalink
#3978 cythonized version is more strict
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 28, 2023
1 parent ba8c6d9 commit f24c3a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unittests/unit/client/keyboard_helper_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def noop():
modifier_names = kh.get_modifier_names()
modifiers_used = [modifier_names.get(x, x) for x in kh.shortcut_modifiers]
assert kh.key_handled_as_shortcut(window, "F4", modifiers_used, True)
assert not kh.key_handled_as_shortcut(window, "F1", (), True)
assert not kh.key_handled_as_shortcut(window, "F1", [], True)
kh.cleanup()


Expand Down

0 comments on commit f24c3a5

Please sign in to comment.