aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp')
-rw-r--r--sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp b/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp
index 94158377e..97f0d568e 100644
--- a/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp
+++ b/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp
@@ -50,7 +50,7 @@ void TestExtraInclude::testClassExtraInclude()
const AbstractMetaClass *classA = AbstractMetaClass::findClass(classes, QLatin1String("A"));
QVERIFY(classA);
- QList<Include> includes = classA->typeEntry()->extraIncludes();
+ QVector<Include> includes = classA->typeEntry()->extraIncludes();
QCOMPARE(includes.count(), 1);
QCOMPARE(includes.first().name(), QLatin1String("header.h"));
}
@@ -76,7 +76,7 @@ void TestExtraInclude::testGlobalExtraIncludes()
TypeEntry* module = td->findType(QLatin1String("Foo"));
QVERIFY(module);
- QList<Include> includes = module->extraIncludes();
+ QVector<Include> includes = module->extraIncludes();
QCOMPARE(includes.count(), 2);
QCOMPARE(includes.first().name(), QLatin1String("header1.h"));
QCOMPARE(includes.last().name(), QLatin1String("header2.h"));