aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/creationtime
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-09-30 17:06:27 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-01 09:03:34 +0000
commit98e7b3cca484df43838fe834dcaf1f97f45c659f (patch)
treee82c39559cd26e98382964d18651b5f62cfdfae7 /tests/benchmarks/creationtime
parent542dd7b77a236fef03e5569e44669fad6db0485d (diff)
Rename QtQuick.Calendar 2.0 to Qt.labs.calendar 1.0
Change-Id: Ief7e28f6c595cb60f15a4960dada24a6c2f5ca3e Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'tests/benchmarks/creationtime')
-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)