From 989fca660c3556fa957ed9a3f7cd3b948a4166a2 Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Mon, 6 Jul 2020 16:15:23 +0200 Subject: Use QList instead of QVector in corelib tests Task-number: QTBUG-84469 Change-Id: Ic80fde5517aed363f17d0da55cadcc958c3c8895 Reviewed-by: Friedemann Kleint --- tests/auto/corelib/plugin/quuid/tst_quuid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto/corelib/plugin') diff --git a/tests/auto/corelib/plugin/quuid/tst_quuid.cpp b/tests/auto/corelib/plugin/quuid/tst_quuid.cpp index 7abe7ebdc6..02dbdff157 100644 --- a/tests/auto/corelib/plugin/quuid/tst_quuid.cpp +++ b/tests/auto/corelib/plugin/quuid/tst_quuid.cpp @@ -388,7 +388,7 @@ public: void tst_QUuid::threadUniqueness() { - QVector threads(qMax(2, QThread::idealThreadCount())); + QList threads(qMax(2, QThread::idealThreadCount())); for (int i = 0; i < threads.count(); ++i) threads[i] = new UuidThread; for (int i = 0; i < threads.count(); ++i) -- cgit v1.2.3