summaryrefslogtreecommitdiff
path: root/tests/unit/config/test_configcommands.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/config/test_configcommands.py')
-rw-r--r--tests/unit/config/test_configcommands.py16
1 files changed, 10 insertions, 6 deletions
diff --git a/tests/unit/config/test_configcommands.py b/tests/unit/config/test_configcommands.py
index 82354bc32..50f22045a 100644
--- a/tests/unit/config/test_configcommands.py
+++ b/tests/unit/config/test_configcommands.py
@@ -725,12 +725,16 @@ class TestBind:
"""Get a dict with no bindings."""
return {'normal': {}}
- @pytest.mark.parametrize("mode, url", [
- ("normal", QtCore.QUrl("qute://bindings")),
- ("passthrough", QtCore.QUrl("qute://bindings#passthrough")),
- ])
- def test_bind_no_args(self, commands, config_stub, no_bindings,
- tabbed_browser_stubs, mode, url):
+ @pytest.mark.parametrize(
+ "mode, url",
+ [
+ ("normal", QtCore.QUrl("qute://bindings")),
+ ("passthrough", QtCore.QUrl("qute://bindings#passthrough")),
+ ],
+ )
+ def test_bind_no_args(
+ self, commands, config_stub, no_bindings, tabbed_browser_stubs, mode, url
+ ):
"""Run ':bind'.
Should open qute://bindings."""