aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2020-06-29 10:12:30 +0200
committerLaszlo Agocs <laszlo.agocs@qt.io>2020-06-29 10:17:31 +0200
commitd422e0fff12792b7be130ea4ed7d921d937aed0a (patch)
treee413f8c7865b88934c550bed35d6c704519e73d3 /tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp
parentb32a2151afd6037608f25b4beaeb9737d8e0926b (diff)
tst_qqmlsettings: Fix QVector - QList fallout
Change-Id: Ibcbd0ea33b90f1baaeba2dc75d3e87c6c57b5ed9 Reviewed-by: Liang Qi <liang.qi@qt.io>
Diffstat (limited to 'tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp')
-rw-r--r--tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp b/tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp
index b0be799bd5..7bd0afa733 100644
--- a/tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp
+++ b/tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp
@@ -494,7 +494,7 @@ void tst_QQmlSettings::noApplicationIdentifiersSet()
QTest::ignoreMessage(QtWarningMsg, QRegularExpression(".*QML Settings: Failed to initialize QSettings instance. Status code is: 1"));
// Can't set an empty applicationName because QCoreApplication won't allow it, which is why it's not listed here.
- QTest::ignoreMessage(QtWarningMsg, QRegularExpression(".*QML Settings: The following application identifiers have not been set: QVector\\(\"organizationName\", \"organizationDomain\"\\)"));
+ QTest::ignoreMessage(QtWarningMsg, QRegularExpression(".*QML Settings: The following application identifiers have not been set: QList\\(\"organizationName\", \"organizationDomain\"\\)"));
QQmlEngine engine;
QQmlComponent component(&engine, testFileUrl("basic.qml"));