summaryrefslogtreecommitdiff
path: root/tests/unit/misc/test_editor.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/misc/test_editor.py')
-rw-r--r--tests/unit/misc/test_editor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/misc/test_editor.py b/tests/unit/misc/test_editor.py
index ded4c5a8f..dc24cbc32 100644
--- a/tests/unit/misc/test_editor.py
+++ b/tests/unit/misc/test_editor.py
@@ -34,7 +34,7 @@ from qutebrowser.utils import usertypes
@pytest.fixture(autouse=True)
def patch_fake_process(config_stub, monkeypatch, stubs):
- monkeypatch.setattr(editormod.guiprocess, 'QProcess', stubs.FakeProcess)
+ monkeypatch.setattr(editormod.guiprocess.QtCore, 'QProcess', stubs.FakeProcess)
@pytest.fixture(params=[True, False])