diff options
author | Paolo Angelelli <paolo.angelelli@theqtcompany.com> | 2016-05-20 15:42:42 +0200 |
---|---|---|
committer | Paolo Angelelli <paolo.angelelli@theqtcompany.com> | 2016-05-20 14:17:43 +0000 |
commit | 59a419adbdb02eaa19c0a716a79ba78b8ff465e6 (patch) | |
tree | 8fd5573eb4f7eff3b947489706a4f6b663467091 | |
parent | 24b373f7fabb6263648324304e9d98a4838eedd7 (diff) | |
download | qtlocation-59a419adbdb02eaa19c0a716a79ba78b8ff465e6.tar.gz |
QtLocation autotest fix
Apparently this test passed until now for mysterious reasons
Change-Id: I9597c13bc7b3d8fee148d6e1095b7a09ea3b37dc
Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
-rw-r--r-- | tests/auto/declarative_geoshape/tst_locationsingleton.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative_geoshape/tst_locationsingleton.qml b/tests/auto/declarative_geoshape/tst_locationsingleton.qml index 5e37d9eb..933517b1 100644 --- a/tests/auto/declarative_geoshape/tst_locationsingleton.qml +++ b/tests/auto/declarative_geoshape/tst_locationsingleton.qml @@ -209,7 +209,7 @@ Item { function test_path_operations() { compare(mapPolyline.path[1].latitude, -27) compare(mapPolyline.path[1].longitude, 154.1) - compare(mapPolyline.coordinateAt(1), QtPositioning.coordinate(27, 154.1)) + compare(mapPolyline.coordinateAt(1), QtPositioning.coordinate(-27, 154.1)) compare(mapPolyline.path.length, mapPolyline.pathLength()) mapPolyline.removeCoordinate(1); |