summaryrefslogtreecommitdiffstats
path: root/tests/auto/animation/qanimationcontroller/tst_qanimationcontroller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/animation/qanimationcontroller/tst_qanimationcontroller.cpp')
-rw-r--r--tests/auto/animation/qanimationcontroller/tst_qanimationcontroller.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/animation/qanimationcontroller/tst_qanimationcontroller.cpp b/tests/auto/animation/qanimationcontroller/tst_qanimationcontroller.cpp
index 4774dc8ba..4149ec116 100644
--- a/tests/auto/animation/qanimationcontroller/tst_qanimationcontroller.cpp
+++ b/tests/auto/animation/qanimationcontroller/tst_qanimationcontroller.cpp
@@ -199,7 +199,7 @@ private Q_SLOTS:
animationController.setEntity(entity.data());
// THEN
- QVector<Qt3DAnimation::QAnimationGroup *> list = animationController.animationGroupList();
+ const QList<Qt3DAnimation::QAnimationGroup *> list = animationController.animationGroupList();
QCOMPARE(list.size(), 2);
QCOMPARE(list.at(0)->name(), animName1);
@@ -233,7 +233,7 @@ private Q_SLOTS:
animationController.setEntity(entity.data());
// THEN
- QVector<Qt3DAnimation::QAnimationGroup *> list = animationController.animationGroupList();
+ const QList<Qt3DAnimation::QAnimationGroup *> list = animationController.animationGroupList();
QCOMPARE(list.size(), 2);
QCOMPARE(list.at(0)->name(), animName1);
@@ -251,7 +251,7 @@ private Q_SLOTS:
animationController.setEntity(entity.data());
// THEN
- QVector<Qt3DAnimation::QAnimationGroup *> list = animationController.animationGroupList();
+ const QList<Qt3DAnimation::QAnimationGroup *> list = animationController.animationGroupList();
QCOMPARE(list.size(), 1);
QCOMPARE(list.at(0)->name(), animName1);