summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-12-03 13:36:20 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-12-03 13:36:20 +0100
commit26d308d95d54abf68207d00002c0c1cd3d142ba4 (patch)
treed98cd827e2150b32cc4c5d4ddcad4ccae4e801c7 /tests
parent4435ef928796fa744be5452924a103bb2e58ee8e (diff)
downloadqutebrowser-26d308d95d54abf68207d00002c0c1cd3d142ba4.tar.gz
qutebrowser-26d308d95d54abf68207d00002c0c1cd3d142ba4.zip
pylint: Enable docparams checker
Diffstat (limited to 'tests')
-rw-r--r--tests/end2end/fixtures/quteprocess.py4
-rw-r--r--tests/unit/completion/test_completionwidget.py11
-rw-r--r--tests/unit/misc/test_keyhints.py4
-rw-r--r--tests/unit/utils/test_urlutils.py1
-rw-r--r--tests/unit/utils/test_version.py2
5 files changed, 6 insertions, 16 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index e165ce5cf..14f34b52c 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -909,8 +909,8 @@ class QuteProc(testprocess.Process):
"""Get a screenshot of the current page.
Arguments:
- probe: If given, only continue if the pixel at the given position isn't
- black (or whatever is specified by probe_color).
+ probe_pos: If given, only continue if the pixel at the given
+ position isn't black (or whatever is specified by probe_color).
"""
for _ in range(5):
tmp_path = self.request.getfixturevalue('tmp_path')
diff --git a/tests/unit/completion/test_completionwidget.py b/tests/unit/completion/test_completionwidget.py
index 89390cbf1..9a1bc99dd 100644
--- a/tests/unit/completion/test_completionwidget.py
+++ b/tests/unit/completion/test_completionwidget.py
@@ -163,16 +163,7 @@ def test_completion_item_focus_no_model(which, completionview, model, qtbot):
@pytest.mark.skip("Seems to disagree with reality, see #5897")
def test_completion_item_focus_fetch(completionview, model, qtbot):
- """Test that on_next_prev_item moves the selection properly.
-
- Args:
- which: the direction in which to move the selection.
- tree: Each list represents a completion category, with each string
- being an item under that category.
- expected: expected argument from on_selection_changed for each
- successive movement. None implies no signal should be
- emitted.
- """
+ """Test that on_next_prev_item moves the selection properly."""
cat = mock.Mock(spec=[
'layoutChanged', 'layoutAboutToBeChanged', 'canFetchMore',
'fetchMore', 'rowCount', 'index', 'data'])
diff --git a/tests/unit/misc/test_keyhints.py b/tests/unit/misc/test_keyhints.py
index 8d9c53c93..922f39331 100644
--- a/tests/unit/misc/test_keyhints.py
+++ b/tests/unit/misc/test_keyhints.py
@@ -30,8 +30,8 @@ def expected_text(*args):
"""Helper to format text we expect the KeyHintView to generate.
Args:
- args: One tuple for each row in the expected output.
- Tuples are of the form: (prefix, color, suffix, command).
+ *args: One tuple for each row in the expected output.
+ Tuples are of the form: (prefix, color, suffix, command).
"""
text = '<table>'
for group in args:
diff --git a/tests/unit/utils/test_urlutils.py b/tests/unit/utils/test_urlutils.py
index 97ff268ca..e5773e25e 100644
--- a/tests/unit/utils/test_urlutils.py
+++ b/tests/unit/utils/test_urlutils.py
@@ -334,7 +334,6 @@ def test_get_search_url_open_base_url(config_stub, url, host):
Args:
url: The "URL" to enter.
host: The expected search machine host.
- query: The expected search query.
"""
config_stub.val.url.open_base_url = True
url = urlutils._get_search_url(url)
diff --git a/tests/unit/utils/test_version.py b/tests/unit/utils/test_version.py
index 1ffbe3c09..7b616d8b7 100644
--- a/tests/unit/utils/test_version.py
+++ b/tests/unit/utils/test_version.py
@@ -721,7 +721,7 @@ class TestModuleVersions:
Args:
attribute: The name of the version attribute.
- expected: The expected return value.
+ expected_modules: The expected modules with that attribute.
"""
import_fake.version_attribute = attribute