summaryrefslogtreecommitdiffstats
path: root/tests/auto/animation/skeleton/tst_skeleton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/animation/skeleton/tst_skeleton.cpp')
-rw-r--r--tests/auto/animation/skeleton/tst_skeleton.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/animation/skeleton/tst_skeleton.cpp b/tests/auto/animation/skeleton/tst_skeleton.cpp
index a17bfcab5..24883e343 100644
--- a/tests/auto/animation/skeleton/tst_skeleton.cpp
+++ b/tests/auto/animation/skeleton/tst_skeleton.cpp
@@ -75,7 +75,7 @@ private Q_SLOTS:
{
// GIVEN
Skeleton backendSkeleton;
- const QList<QString> jointNames = { QLatin1String("rootJoint"),
+ const QVector<QString> jointNames = { QLatin1String("rootJoint"),
QLatin1String("child1Joint"),
QLatin1String("child2Joint") };
@@ -103,10 +103,10 @@ private Q_SLOTS:
QCOMPARE(backendSkeleton.jointLocalPoses().size(), 0);
// GIVEN
- const QList<QString> names = { QLatin1String("root"),
- QLatin1String("child1"),
- QLatin1String("child2") };
- const QList<Sqt> localPoses = { Sqt(), Sqt(), Sqt() };
+ const QVector<QString> names = { QLatin1String("root"),
+ QLatin1String("child1"),
+ QLatin1String("child2") };
+ const QVector<Sqt> localPoses = { Sqt(), Sqt(), Sqt() };
// WHEN
backendSkeleton.setJointNames(names);