summaryrefslogtreecommitdiff
path: root/tests/unit/config/test_configcommands.py
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2018-03-06 07:39:41 +0100
committerFlorian Bruhin <git@the-compiler.org>2018-03-06 07:39:41 +0100
commit0e2a39da2a6dd2f349eba595ea8765599bff626d (patch)
tree6bde83999fbb39e035176cbebe9f5524432ecf97 /tests/unit/config/test_configcommands.py
parentc9cd47b5b11bb23c043df7f997038dc7a085ee6e (diff)
downloadqutebrowser-0e2a39da2a6dd2f349eba595ea8765599bff626d.tar.gz
qutebrowser-0e2a39da2a6dd2f349eba595ea8765599bff626d.zip
Fix tests for keyboard parsing change
Diffstat (limited to 'tests/unit/config/test_configcommands.py')
-rw-r--r--tests/unit/config/test_configcommands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/config/test_configcommands.py b/tests/unit/config/test_configcommands.py
index a74b446d1..4a09b5be2 100644
--- a/tests/unit/config/test_configcommands.py
+++ b/tests/unit/config/test_configcommands.py
@@ -559,7 +559,7 @@ class TestBind:
"Can't find binding 'foobar' in normal mode"),
# :bind <blub> nop
('bind', ['<blub>', 'nop'], {},
- "Could not parse '<blub>': Got unknown key!"),
+ "Could not parse '<blub>': Got invalid key!"),
# :unbind foobar
('unbind', ['foobar'], {},
"Can't find binding 'foobar' in normal mode"),
@@ -568,7 +568,7 @@ class TestBind:
'Invalid mode wrongmode!'),
# :unbind <blub>
('unbind', ['<blub>'], {},
- "Could not parse '<blub>': Got unknown key!"),
+ "Could not parse '<blub>': Got invalid key!"),
])
def test_bind_invalid(self, commands,
command, args, kwargs, expected):