summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Angelelli <paolo.angelelli@qt.io>2017-09-08 15:14:04 +0200
committerPaolo Angelelli <paolo.angelelli@qt.io>2017-09-09 14:04:33 +0000
commit97bce501d5dc0f8e09e9607c24943ecd72fb7545 (patch)
tree66ee3c7b3922d31fb133bba39fde8d1c79e56e4e
parent8f80da7ea0165adb492c71255d0eea5f08c0af8e (diff)
downloadqtlocation-97bce501d5dc0f8e09e9607c24943ecd72fb7545.tar.gz
Remove HERE plugin from tests
It keeps causing errors saying that host requires autentication, every now and then. Change-Id: I9fc96aee8793ca865cbcc88c7340f2363d08fc1f Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
-rw-r--r--tests/auto/declarative_ui/tst_map.qml16
1 files changed, 2 insertions, 14 deletions
diff --git a/tests/auto/declarative_ui/tst_map.qml b/tests/auto/declarative_ui/tst_map.qml
index 5c9deca2..c36ebc0e 100644
--- a/tests/auto/declarative_ui/tst_map.qml
+++ b/tests/auto/declarative_ui/tst_map.qml
@@ -38,18 +38,6 @@ Item {
// General-purpose elements for the test:
Plugin { id: testPlugin; name: "qmlgeo.test.plugin"; allowExperimental: true }
Plugin { id: testPlugin2; name: "gmlgeo.test.plugin"; allowExperimental: true }
- Plugin { id: herePlugin; name: "here";
- parameters: [
- PluginParameter {
- name: "here.app_id"
- value: "stub"
- },
- PluginParameter {
- name: "here.token"
- value: "stub"
- }
- ]
- }
Plugin {
id: testPluginLazyParameter;
name: "qmlgeo.test.plugin"
@@ -111,13 +99,13 @@ Item {
Map {id: mapPar; plugin: testPlugin; center: coordinate1; width: 512; height: 512}
- Map {id: coordinateMap; plugin: herePlugin; center: coordinate3;
+ Map {id: coordinateMap; plugin: testPlugin; center: coordinate3;
width: 1000; height: 1000; zoomLevel: 15 }
Map {id: mapTiltBearing; plugin: testPlugin; center: coordinate1;
width: 1000; height: 1000; zoomLevel: 4; bearing: 45.0; tilt: 25.0 }
- Map {id: mapTiltBearingHere; plugin: herePlugin; center: coordinate1;
+ Map {id: mapTiltBearingHere; plugin: testPlugin; center: coordinate1;
width: 1000; height: 1000; zoomLevel: 4; bearing: 45.0; tilt: 25.0 }
Map {