summaryrefslogtreecommitdiff
path: root/tests/end2end/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/end2end/conftest.py')
-rw-r--r--tests/end2end/conftest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/end2end/conftest.py b/tests/end2end/conftest.py
index a4a089cea..8f7fc155b 100644
--- a/tests/end2end/conftest.py
+++ b/tests/end2end/conftest.py
@@ -30,7 +30,7 @@ import pstats
import operator
import pytest
-from PyQt5.QtCore import PYQT_VERSION, QCoreApplication
+from PyQt6.QtCore import PYQT_VERSION, QCoreApplication
pytest.register_assert_rewrite('end2end.fixtures')
@@ -117,7 +117,7 @@ def _get_version_tag(tag):
)
elif package == 'pyqtwebengine':
try:
- from PyQt5.QtWebEngine import PYQT_WEBENGINE_VERSION
+ from PyQt6.QtWebEngine import PYQT_WEBENGINE_VERSION
except ImportError:
running_version = PYQT_VERSION
else: