diff options
| author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2022-10-13 15:22:23 +0200 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2023-02-09 16:06:52 +0100 |
| commit | a1f368a504f1c465cdf85dbc137db4880a09738a (patch) | |
| tree | 72e8392c1cba8bfef1ed249de718387cea36f2db /sources/pyside6/tests/QtXml/qdomdocument_test.py | |
| parent | 50c3f36955e72302633c1d9956506dbd1f158012 (diff) | |
Adapt to Qt 6.5
- Add new enums
- Hide field QMetaMethod::mobj made protected by
qtbase/0b701ec0cd86afbf6bb0d0abb361cfb6500c2e1b
- Adapt to PDF qtwebengine/6769bd1544c56a514fe35bf16d05614605a49bea
- Adapt to qhttpserver/55d10201dc7a47b239825548e053c1fb0de61115,
adding a virtual method with rvalue reference to QAbstractHttpServer
- create_wheels.py: Adapt to changed location of the metatypes directory
in Qt after qtbase/4234ce12dc819b9ca76c8dc4c251f5bd4fe0bc9c.
- Adapt error column in QDomDocument test
- Fix QMetaObject::invoke() to work after
qtbase/fe92b080658f0d8609e2a2a69e5ec2b51dd7bf9d by making the
cast of the helper types to Q(Generic)ReturnArgument explicit
in the snippets
Change-Id: Ifb514878e999ad4c9ef00ff83172626eff112a3d
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io>
Diffstat (limited to 'sources/pyside6/tests/QtXml/qdomdocument_test.py')
| -rw-r--r-- | sources/pyside6/tests/QtXml/qdomdocument_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtXml/qdomdocument_test.py b/sources/pyside6/tests/QtXml/qdomdocument_test.py index 33b395f9b..190adcb15 100644 --- a/sources/pyside6/tests/QtXml/qdomdocument_test.py +++ b/sources/pyside6/tests/QtXml/qdomdocument_test.py @@ -47,7 +47,7 @@ class QDomDocumentTest(unittest.TestCase): self.assertFalse(ok) self.assertEqual(errorStr, 'Opening and ending tag mismatch.') self.assertEqual(errorLine, 4) - self.assertEqual(errorColumn, 21) + self.assertEqual(errorColumn, 4) def testQDomDocumentSetContentWithGoodXmlData(self): '''Sets valid xml as the QDomDocument contents.''' |
