summaryrefslogtreecommitdiff
path: root/tests/unit/completion/test_models.py
diff options
context:
space:
mode:
authorPhilip Scheel <ki@kipd.net>2018-09-04 00:59:49 +0200
committerPhilip Scheel <ki@kipd.net>2018-09-04 00:59:49 +0200
commit8d04f8cdc8f3c9a0b13b4e8684d3bf7dddea8b9c (patch)
tree499f4fcd9ff1815b7d7d8041acf2ba2f7fe35428 /tests/unit/completion/test_models.py
parente88028ec98514e606cb2ad0030c0bf201a45b46c (diff)
downloadqutebrowser-8d04f8cdc8f3c9a0b13b4e8684d3bf7dddea8b9c.tar.gz
qutebrowser-8d04f8cdc8f3c9a0b13b4e8684d3bf7dddea8b9c.zip
Fixed pylint complaints
Diffstat (limited to 'tests/unit/completion/test_models.py')
-rw-r--r--tests/unit/completion/test_models.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/unit/completion/test_models.py b/tests/unit/completion/test_models.py
index 7cfc3d516..2b777795b 100644
--- a/tests/unit/completion/test_models.py
+++ b/tests/unit/completion/test_models.py
@@ -490,7 +490,7 @@ def test_url_completion(qtmodeltester, config_stub, web_history_populated,
})
def test_search_only_default(qtmodeltester, config_stub, web_history_populated,
- quickmarks, bookmarks, info):
+ quickmarks, bookmarks, info):
"""Test that Seardh engines is not shown when only default search engine is set in settings.
Verify that:
@@ -855,11 +855,12 @@ def test_setting_option_completion(qtmodeltester, config_stub,
('bindings.commands', 'Default keybindings', (
'{"normal": {"<Ctrl+q>": "quit", "ZQ": "quit", '
'"I": "invalid", "d": "scroll down"}}')),
- ('completion.open_categories', 'Which categories to show (in which order) in the :open completion.', '["searchengines", "quickmarks", "bookmarks", "history"]'),
+ ('completion.open_categories', 'Which categories to show (in which order) in the :open completion.',
+ '["searchengines", "quickmarks", "bookmarks", "history"]'),
('content.javascript.enabled', 'Enable/Disable JavaScript',
'true'),
('url.searchengines', 'searchengines list',
- '{"DEFAULT": "https://duckduckgo.com/?q={}", "google": "https://google.com/?q={}"}'),
+ '{"DEFAULT": "https://duckduckgo.com/?q={}", "google": "https://google.com/?q={}"}'),
]
})