summaryrefslogtreecommitdiff
path: root/tests/end2end/test_invocations.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/end2end/test_invocations.py')
-rw-r--r--tests/end2end/test_invocations.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/end2end/test_invocations.py b/tests/end2end/test_invocations.py
index b860feed0..3b8b2f1c8 100644
--- a/tests/end2end/test_invocations.py
+++ b/tests/end2end/test_invocations.py
@@ -29,7 +29,7 @@ import json
import platform
import pytest
-from PyQt5.QtCore import QProcess, QPoint
+from PyQt6.QtCore import QProcess, QPoint
from helpers import testutils
from qutebrowser.utils import qtutils, utils
@@ -786,8 +786,8 @@ def test_unavailable_backend(request, quteproc_new):
that the chosen backend is actually available - i.e., that the error message is
properly printed, rather than an unhandled exception.
"""
- qtwe_module = "PyQt5.QtWebEngineWidgets"
- qtwk_module = "PyQt5.QtWebKitWidgets"
+ qtwe_module = "PyQt6.QtWebEngineWidgets"
+ qtwk_module = "PyQt6.QtWebKitWidgets"
# Note we want to try the *opposite* backend here.
if request.config.webengine:
pytest.importorskip(qtwe_module)