summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-22 17:37:42 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-01-22 17:37:42 +0100
commit41afe0febe437e73df4edb3548036eedc0ee70c4 (patch)
treeb1129694fbfe413d4366c89950db3a5b4d440d12 /tests
parent28a694e17c9b41e9b5585926091f5b70fedf558c (diff)
downloadqutebrowser-41afe0febe437e73df4edb3548036eedc0ee70c4.tar.gz
qutebrowser-41afe0febe437e73df4edb3548036eedc0ee70c4.zip
Support Super as modifier name
See https://github.com/qutebrowser/qutebrowser/discussions/5999#discussioncomment-297309
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/keyinput/test_keyutils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit/keyinput/test_keyutils.py b/tests/unit/keyinput/test_keyutils.py
index e43457c1b..9d6479480 100644
--- a/tests/unit/keyinput/test_keyutils.py
+++ b/tests/unit/keyinput/test_keyutils.py
@@ -267,6 +267,7 @@ class TestKeySequence:
@pytest.mark.parametrize('orig, normalized', [
('<Control+x>', '<Ctrl+x>'),
('<Windows+x>', '<Meta+x>'),
+ ('<Super+x>', '<Meta+x>'),
('<Mod4+x>', '<Meta+x>'),
('<Command+x>', '<Meta+x>'),
('<Cmd+x>', '<Meta+x>'),