aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp')
-rw-r--r--tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp b/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
index 9fa617bcc7..2a853ae081 100644
--- a/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
+++ b/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
@@ -4483,7 +4483,7 @@ void tst_qqmlecmascript::singletonType()
if (!errorMessage.isEmpty())
QTest::ignoreMessage(QtWarningMsg, errorMessage.toLatin1().constData());
- for (const QString &warning : qAsConst(warningMessages))
+ for (const QString &warning : std::as_const(warningMessages))
QTest::ignoreMessage(QtWarningMsg, warning.toLatin1().constData());
QScopedPointer<QObject> object(component.create());
@@ -4840,7 +4840,7 @@ void tst_qqmlecmascript::importScripts()
QTest::ignoreMessage(QtWarningMsg, errorMessage.toLatin1().constData());
if (compilationShouldSucceed) {
- for (const QString &warning : qAsConst(warningMessages))
+ for (const QString &warning : std::as_const(warningMessages))
QTest::ignoreMessage(QtWarningMsg, warning.toLatin1().constData());
}