summaryrefslogtreecommitdiff
path: root/tests/end2end/fixtures/test_testprocess.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/end2end/fixtures/test_testprocess.py')
-rw-r--r--tests/end2end/fixtures/test_testprocess.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/end2end/fixtures/test_testprocess.py b/tests/end2end/fixtures/test_testprocess.py
index aa6f19c67..730ec74ba 100644
--- a/tests/end2end/fixtures/test_testprocess.py
+++ b/tests/end2end/fixtures/test_testprocess.py
@@ -25,7 +25,7 @@ import contextlib
import datetime
import pytest
-from PyQt5.QtCore import QProcess
+from qutebrowser.qt import QtCore
from end2end.fixtures import testprocess
@@ -53,7 +53,7 @@ class PythonProcess(testprocess.Process):
def __init__(self, request):
super().__init__(request)
- self.proc.setReadChannel(QProcess.StandardOutput)
+ self.proc.setReadChannel(QtCore.QProcess.StandardOutput)
self.code = None
def _parse_line(self, line):