summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 622286a54..0da3a1f81 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -116,11 +116,11 @@ def _apply_platform_markers(config, item):
('qt5_only',
pytest.mark.skipif,
not machinery.IS_QT5,
- f"Only runs on Qt 5, not {machinery.WRAPPER}"),
+ f"Only runs on Qt 5, not {machinery.INFO.wrapper}"),
('qt6_only',
pytest.mark.skipif,
not machinery.IS_QT6,
- f"Only runs on Qt 6, not {machinery.WRAPPER}"),
+ f"Only runs on Qt 6, not {machinery.INFO.wrapper}"),
('qt5_xfail', pytest.mark.xfail, machinery.IS_QT5, "Fails on Qt 5"),
('qt6_xfail', pytest.mark.skipif, machinery.IS_QT6, "Fails on Qt 6"),
('qtwebkit_openssl3_skip',