diff options
Diffstat (limited to 'sources/pyside6/tests/QtUiTools/uiloader_test.py')
| -rw-r--r-- | sources/pyside6/tests/QtUiTools/uiloader_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtUiTools/uiloader_test.py b/sources/pyside6/tests/QtUiTools/uiloader_test.py index 4f58bef73..c1bcf0e81 100644 --- a/sources/pyside6/tests/QtUiTools/uiloader_test.py +++ b/sources/pyside6/tests/QtUiTools/uiloader_test.py @@ -41,7 +41,8 @@ class QUiLoaderTester(UsesQApplication): child = w.findChild(QWidget, "child_object") self.assertNotEqual(child, None) - self.assertEqual(w.findChild(QWidget, "grandson_object"), child.findChild(QWidget, "grandson_object")) + self.assertEqual(w.findChild(QWidget, "grandson_object"), + child.findChild(QWidget, "grandson_object")) def testLoadFileOverride(self): # PYSIDE-1070, override QUiLoader::createWidget() with parent=None crashes |
