summaryrefslogtreecommitdiff
path: root/tests/auto/declarative_core/tst_place.qml
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@jollamobile.com>2013-12-10 17:20:53 +1000
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-10 01:31:00 +0100
commit9aa2031c487583b1b92681d0575f51fe3377cc8b (patch)
treefed1bbc90c540ece0d714ca1a99598bef2775a4a /tests/auto/declarative_core/tst_place.qml
parent12aac62dd4d8c425a8838f1635708ac8b9695359 (diff)
downloadqtlocation-9aa2031c487583b1b92681d0575f51fe3377cc8b.tar.gz
Stop skipping declarative_core tests.
These test cases were failing due to regressions in QML and have since been fixed. See QTBUG-33542, QTBUG-33546 and QTBUG-33561. Change-Id: Id86e9a8baa29eea851bda27cb668a6ce586c5f25 Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
Diffstat (limited to 'tests/auto/declarative_core/tst_place.qml')
-rw-r--r--tests/auto/declarative_core/tst_place.qml10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/auto/declarative_core/tst_place.qml b/tests/auto/declarative_core/tst_place.qml
index d1c3cb8c..598872a7 100644
--- a/tests/auto/declarative_core/tst_place.qml
+++ b/tests/auto/declarative_core/tst_place.qml
@@ -174,9 +174,8 @@ TestCase {
return false;
if (place1.supplier.name !== place2.supplier.name)
return false;
- //depends in QTBUG-33546
- /*if (place1.supplier.url !== place2.supplier.url)
- return false;*/
+ if (place1.supplier.url !== place2.supplier.url)
+ return false;
// check supplier icon
if (place1.supplier.icon === null && place2.supplier.icon !== null)
@@ -235,10 +234,9 @@ TestCase {
if (place1.location.address.postalCode !== place2.location.address.postalCode)
return false;
- //QTBUG-33561 operator === should work too, using == for now only
- if (place1.location.coordinate != place2.location.coordinate)
+ if (place1.location.coordinate !== place2.location.coordinate)
return false;
- if (place1.location.boundingBox != place2.location.boundingBox)
+ if (place1.location.boundingBox !== place2.location.boundingBox)
return false;
}