summaryrefslogtreecommitdiff
path: root/tests/unit/completion/test_completionwidget.py
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/unit/completion/test_completionwidget.py
parent4435ef928796fa744be5452924a103bb2e58ee8e (diff)
downloadqutebrowser-26d308d95d54abf68207d00002c0c1cd3d142ba4.tar.gz
qutebrowser-26d308d95d54abf68207d00002c0c1cd3d142ba4.zip
pylint: Enable docparams checker
Diffstat (limited to 'tests/unit/completion/test_completionwidget.py')
-rw-r--r--tests/unit/completion/test_completionwidget.py11
1 files changed, 1 insertions, 10 deletions
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'])