summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/auto/core/qiviabstractfeature/testdata/autodiscovery.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/auto/core/qiviabstractfeature/testdata/autodiscovery.qml b/tests/auto/core/qiviabstractfeature/testdata/autodiscovery.qml
index cac548c..73ca1b5 100644
--- a/tests/auto/core/qiviabstractfeature/testdata/autodiscovery.qml
+++ b/tests/auto/core/qiviabstractfeature/testdata/autodiscovery.qml
@@ -28,6 +28,7 @@
****************************************************************************/
import QtQuick 2.0
+import QtIvi 1.0
import testfeature 1.0
Item {
@@ -43,7 +44,9 @@ Item {
}
function discover() {
- noAutoItem.discoveryMode = TestFeature.LoadOnlyProductionBackends
+ // We have to use AbstractFeature here instead of TestFeature because of
+ // QTBUG-83703
+ noAutoItem.discoveryMode = AbstractFeature.LoadOnlyProductionBackends
noAutoItem.startAutoDiscovery()
}
}