summaryrefslogtreecommitdiff
path: root/tests/unit/misc/test_miscwidgets.py
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-04-24 23:09:03 +0200
committerFlorian Bruhin <git@the-compiler.org>2017-05-10 09:19:24 +0200
commitc6e31391dee7ae7c5490719b66983d5ddbbd7402 (patch)
treea5b8c10abb63f81b33c95f0e68143bc6011b2631 /tests/unit/misc/test_miscwidgets.py
parentf4d3f97cb75b657af5e0b10f380d948cd60656b0 (diff)
downloadqutebrowser-c6e31391dee7ae7c5490719b66983d5ddbbd7402.tar.gz
qutebrowser-c6e31391dee7ae7c5490719b66983d5ddbbd7402.zip
Fix most tests/lint
Diffstat (limited to 'tests/unit/misc/test_miscwidgets.py')
-rw-r--r--tests/unit/misc/test_miscwidgets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/misc/test_miscwidgets.py b/tests/unit/misc/test_miscwidgets.py
index 03441d9f2..d6a1c2210 100644
--- a/tests/unit/misc/test_miscwidgets.py
+++ b/tests/unit/misc/test_miscwidgets.py
@@ -34,7 +34,7 @@ class TestCommandLineEdit:
@pytest.fixture
def cmd_edit(self, qtbot):
"""Fixture to initialize a CommandLineEdit."""
- cmd_edit = miscwidgets.CommandLineEdit(None)
+ cmd_edit = miscwidgets.CommandLineEdit()
cmd_edit.set_prompt(':')
qtbot.add_widget(cmd_edit)
assert cmd_edit.text() == ''