summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/tst_selftests.cpp
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-06-22 15:48:18 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-06-25 10:13:58 +0200
commitfe5b04346c08eea42b5acd502cb01d2e6a4062d1 (patch)
treeb49f31fbc8ae28e56dad44fcfd98639cb03d4d56 /tests/auto/testlib/selftests/tst_selftests.cpp
parent5accfa1e6875582022cb4b6194c3e7616df1a0b7 (diff)
Use QList instead of QVector in testlib tests
Task-number: QTBUG-84469 Change-Id: I36a69021c8d3491a4fd622f3ecb218e1be8a77bc Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'tests/auto/testlib/selftests/tst_selftests.cpp')
-rw-r--r--tests/auto/testlib/selftests/tst_selftests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/testlib/selftests/tst_selftests.cpp b/tests/auto/testlib/selftests/tst_selftests.cpp
index 6659525fec..293f8e5333 100644
--- a/tests/auto/testlib/selftests/tst_selftests.cpp
+++ b/tests/auto/testlib/selftests/tst_selftests.cpp
@@ -743,7 +743,7 @@ bool TestLogger::shouldIgnoreTest(const QString &test) const
return false;
}
-using TestLoggers = QVector<TestLogger>;
+using TestLoggers = QList<TestLogger>;
// ----------------------- Output checking -----------------------