summaryrefslogtreecommitdiffstats
path: root/tests/auto/animation/clipblendvalue/tst_clipblendvalue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/animation/clipblendvalue/tst_clipblendvalue.cpp')
-rw-r--r--tests/auto/animation/clipblendvalue/tst_clipblendvalue.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/animation/clipblendvalue/tst_clipblendvalue.cpp b/tests/auto/animation/clipblendvalue/tst_clipblendvalue.cpp
index fce78a0e0..141da6d4c 100644
--- a/tests/auto/animation/clipblendvalue/tst_clipblendvalue.cpp
+++ b/tests/auto/animation/clipblendvalue/tst_clipblendvalue.cpp
@@ -211,7 +211,7 @@ private Q_SLOTS:
blendNode->setClipFormat(animatorId, clipFormat);
}
- QList<int> indexes(animatorCount);
+ QVector<int> indexes(animatorCount);
std::iota(indexes.begin(), indexes.end(), 0);
QTest::newRow("multiple entries, ordered")
@@ -238,7 +238,7 @@ private Q_SLOTS:
}
// Shuffle the animatorIds to randomise the lookups
- QList<int> indexes(animatorCount);
+ QVector<int> indexes(animatorCount);
std::iota(indexes.begin(), indexes.end(), 0);
std::random_device rd;
std::mt19937 generator(rd());