diff options
author | Paolo Angelelli <paolo.angelelli@qt.io> | 2018-01-12 13:16:50 +0100 |
---|---|---|
committer | Paolo Angelelli <paolo.angelelli@qt.io> | 2018-01-22 19:17:17 +0000 |
commit | 20c21955c2ccfd2bf5ec285b8b488f3bf89c269b (patch) | |
tree | 19582e1bc17f78705e25add9f91a4b5cd7be2390 /tests | |
parent | 9cb8bec1f49dfa4cf44f946a05c1622d16431a88 (diff) | |
download | qtlocation-20c21955c2ccfd2bf5ec285b8b488f3bf89c269b.tar.gz |
Fix property name in tst_place.qml
Change-Id: I8d0209d3bed93a60692210f985ce65d58ce5d6ca
Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative_core/tst_place.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative_core/tst_place.qml b/tests/auto/declarative_core/tst_place.qml index 459b8f33..bb789b42 100644 --- a/tests/auto/declarative_core/tst_place.qml +++ b/tests/auto/declarative_core/tst_place.qml @@ -134,7 +134,7 @@ TestCase { function compare_place(place1, place2) { // check simple properties var simpleProperties = ["name", "placeId", "primaryPhone", "primaryFax", "primaryEmail", - "primaryUrl", "visibility"]; + "primaryWebsite", "visibility"]; for (x in simpleProperties) { if (place1[simpleProperties[x]] !== place2[simpleProperties[x]]) return false; |