aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/tests/testabstractmetatype.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2023-05-08 09:47:23 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2023-05-11 11:46:34 +0200
commit17ef62122f31264942b3799fd502bcbac39fcc1b (patch)
tree54a1bc99b6be664cfe7da912358040495e69fb21 /sources/shiboken6/ApiExtractor/tests/testabstractmetatype.cpp
parent3965de109132cafcb4f5c23fdc1c24a7baec9574 (diff)
shiboken6: Correctly register smartpointer signatures
Drop the space before the closing bracket (no longer required in C++) which is causing signatures mismatches when using it signals. Pick-to: 6.5 Task-number: PYSIDE-2316 Change-Id: Ia460a0868454cc7a2a41e82ef921e50a40fcc45d Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/shiboken6/ApiExtractor/tests/testabstractmetatype.cpp')
-rw-r--r--sources/shiboken6/ApiExtractor/tests/testabstractmetatype.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/shiboken6/ApiExtractor/tests/testabstractmetatype.cpp b/sources/shiboken6/ApiExtractor/tests/testabstractmetatype.cpp
index 644ae8aa1..4a2821db8 100644
--- a/sources/shiboken6/ApiExtractor/tests/testabstractmetatype.cpp
+++ b/sources/shiboken6/ApiExtractor/tests/testabstractmetatype.cpp
@@ -193,7 +193,7 @@ void TestAbstractMetaType::testTypedefWithTemplates()
QCOMPARE(args.size(), 1);
const AbstractMetaArgument &arg = args.constFirst();
AbstractMetaType metaType = arg.type();
- QCOMPARE(metaType.cppSignature(), u"A<B >");
+ QCOMPARE(metaType.cppSignature(), u"A<B>");
}