summaryrefslogtreecommitdiff
path: root/tests/unit/config/test_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/config/test_config.py')
-rw-r--r--tests/unit/config/test_config.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/tests/unit/config/test_config.py b/tests/unit/config/test_config.py
index a8bdaecbe..34f1cd816 100644
--- a/tests/unit/config/test_config.py
+++ b/tests/unit/config/test_config.py
@@ -508,9 +508,11 @@ class TestConfig:
])
def test_get_for_url_fallback(self, conf, fallback, expected):
"""Test conf.get() with a URL and fallback."""
- value = conf.get('content.javascript.enabled',
- url=QtCore.QUrl('https://example.com/'),
- fallback=fallback)
+ value = conf.get(
+ 'content.javascript.enabled',
+ url=QtCore.QUrl('https://example.com/'),
+ fallback=fallback,
+ )
assert value is expected
@pytest.mark.parametrize('value', [{}, {'normal': {'a': 'nop'}}])
@@ -755,10 +757,13 @@ class TestContainer:
new_container = new_container.favicons
assert new_container._prefix == 'tabs.favicons'
- @pytest.mark.parametrize('configapi, expected', [
- (object(), 'rgb'),
- (None, QtGui.QColor.Rgb),
- ])
+ @pytest.mark.parametrize(
+ 'configapi, expected',
+ [
+ (object(), 'rgb'),
+ (None, QtGui.QColor.Rgb),
+ ],
+ )
def test_getattr_option(self, container, configapi, expected):
container._configapi = configapi
# Use an option with a to_py() so we can check the conversion.