aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/creationtime
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-09-30 17:47:36 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-01 09:03:42 +0000
commit3f2ac678971694fe6144a4e15197aff2ca38639b (patch)
tree06440cbf63932fb008f3aab29835b07d0310bada /tests/benchmarks/creationtime
parentb948c83255239a6fe49fca58a98f90e796ce9047 (diff)
Rename QtQuick.Controls 2.0 to Qt.labs.controls 1.0
Change-Id: I142622dd85e95ef70b11132e77ccf48701f2cabc 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 5d8d9b1c..32ba17ff 100644
--- a/tests/benchmarks/creationtime/tst_creationtime.cpp
+++ b/tests/benchmarks/creationtime/tst_creationtime.cpp
@@ -101,14 +101,14 @@ void tst_CreationTime::controls()
{
QFETCH(QByteArray, control);
QQmlComponent component(&engine);
- component.setData("import QtQuick.Controls 2.0;" + control + "{}", QUrl());
+ component.setData("import Qt.labs.controls 1.0;" + control + "{}", QUrl());
doBenchmark(&component);
}
void tst_CreationTime::controls_data()
{
QTest::addColumn<QByteArray>("control");
- addTestRows(engine.importPathList(), "QtQuick/Controls.2");
+ addTestRows(engine.importPathList(), "Qt/labs/controls");
}
void tst_CreationTime::calendar()