summaryrefslogtreecommitdiff
path: root/tests/unit/config/test_configcommands.py
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2018-03-06 21:44:37 +0100
committerFlorian Bruhin <git@the-compiler.org>2018-03-06 21:44:37 +0100
commit8a60855b88b582b3ace9c107a5869ea64aaea6bd (patch)
treed14a1b9ffc356221ff937d9408a843ff88882ce6 /tests/unit/config/test_configcommands.py
parente2cdb5c8cf184d652788943159318d2cc4c6d60c (diff)
downloadqutebrowser-8a60855b88b582b3ace9c107a5869ea64aaea6bd.tar.gz
qutebrowser-8a60855b88b582b3ace9c107a5869ea64aaea6bd.zip
Fix lint
Diffstat (limited to 'tests/unit/config/test_configcommands.py')
-rw-r--r--tests/unit/config/test_configcommands.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/config/test_configcommands.py b/tests/unit/config/test_configcommands.py
index 80328a22d..6434a1c9c 100644
--- a/tests/unit/config/test_configcommands.py
+++ b/tests/unit/config/test_configcommands.py
@@ -107,9 +107,9 @@ class TestSet:
monkeypatch.setattr(objects, 'backend', usertypes.Backend.QtWebKit)
option = 'content.javascript.enabled'
- with pytest.raises(
- cmdexc.CommandError,
- match='Error while parsing http://: Pattern without host'):
+ with pytest.raises(cmdexc.CommandError,
+ match=('Error while parsing http://: Pattern '
+ 'without host')):
commands.set(0, option, 'false', pattern='http://')
def test_set_no_pattern(self, monkeypatch, commands):