aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/creationtime/tst_creationtime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/creationtime/tst_creationtime.cpp')
-rw-r--r--tests/benchmarks/creationtime/tst_creationtime.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/benchmarks/creationtime/tst_creationtime.cpp b/tests/benchmarks/creationtime/tst_creationtime.cpp
index 9185d5b5..5d8d9b1c 100644
--- a/tests/benchmarks/creationtime/tst_creationtime.cpp
+++ b/tests/benchmarks/creationtime/tst_creationtime.cpp
@@ -115,14 +115,14 @@ void tst_CreationTime::calendar()
{
QFETCH(QByteArray, control);
QQmlComponent component(&engine);
- component.setData("import QtQuick.Calendar 2.0;" + control + "{}", QUrl());
+ component.setData("import Qt.labs.calendar 1.0;" + control + "{}", QUrl());
doBenchmark(&component);
}
void tst_CreationTime::calendar_data()
{
QTest::addColumn<QByteArray>("control");
- addTestRows(engine.importPathList(), "QtQuick/Calendar.2");
+ addTestRows(engine.importPathList(), "Qt/labs/calendar");
}
QTEST_MAIN(tst_CreationTime)