aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build_history/blacklist.txt3
-rw-r--r--sources/pyside6/tests/QtCore/feature_with_uic_test.py4
2 files changed, 2 insertions, 5 deletions
diff --git a/build_history/blacklist.txt b/build_history/blacklist.txt
index e8c17cde9..7786fe989 100644
--- a/build_history/blacklist.txt
+++ b/build_history/blacklist.txt
@@ -47,9 +47,6 @@
darwin ci
[QtWidgets::qpicture_test]
darwin ci
-# Incomplehensible effect with feature switching on 3.6, qApp.process_events()
-[QtCore::feature_with_uic_test]
- py3.6
# Unsolved Refcounting leaks in debug mode
[pysidetest::property_python_test]
debug
diff --git a/sources/pyside6/tests/QtCore/feature_with_uic_test.py b/sources/pyside6/tests/QtCore/feature_with_uic_test.py
index 001ab36f6..09f25e585 100644
--- a/sources/pyside6/tests/QtCore/feature_with_uic_test.py
+++ b/sources/pyside6/tests/QtCore/feature_with_uic_test.py
@@ -59,7 +59,7 @@ init_test_paths(False)
from helper.usesqapplication import UsesQApplication
-from PySide6.QtCore import QLibraryInfo, qVersion
+from PySide6.QtCore import QCoreApplication, QLibraryInfo, qVersion
from PySide6.QtWidgets import QApplication, QMainWindow
from __feature__ import snake_case
@@ -81,7 +81,7 @@ class FeatureTest(UsesQApplication):
window.set_window_title(qVersion())
window.show()
while not window.window_handle().is_exposed():
- qApp.process_events()
+ QCoreApplication.process_events()
if __name__ == '__main__':