diff options
author | Fabian Guerra Soto <fabian.guerra@mapbox.com> | 2017-02-20 16:35:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-20 16:35:03 -0500 |
commit | 657c9f92cb697b9ab927a14cde6d5cb77c04f1c1 (patch) | |
tree | 455550c9a20a06cd1fcf409ae39db82adda0dc42 /platform/darwin/test | |
parent | a39526654b15cb278fd832d7501430b9e5081aee (diff) | |
download | qtlocation-mapboxgl-657c9f92cb697b9ab927a14cde6d5cb77c04f1c1.tar.gz |
[ios, macos] fixed wyoming inverted coordinates (#8069)
Diffstat (limited to 'platform/darwin/test')
-rw-r--r-- | platform/darwin/test/MGLGeometryTests.mm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/darwin/test/MGLGeometryTests.mm b/platform/darwin/test/MGLGeometryTests.mm index d86f7baff4..448145157d 100644 --- a/platform/darwin/test/MGLGeometryTests.mm +++ b/platform/darwin/test/MGLGeometryTests.mm @@ -79,9 +79,9 @@ } - (void)testCoordinateInCoordinateBounds { - CLLocationCoordinate2D ne = CLLocationCoordinate2DMake(41, -111); - CLLocationCoordinate2D sw = CLLocationCoordinate2DMake(45, -104); - MGLCoordinateBounds wyoming = MGLCoordinateBoundsMake(ne, sw); + CLLocationCoordinate2D ne = CLLocationCoordinate2DMake(45, -104); + CLLocationCoordinate2D sw = CLLocationCoordinate2DMake(41, -111); + MGLCoordinateBounds wyoming = MGLCoordinateBoundsMake(sw, ne); CLLocationCoordinate2D centerOfWyoming = CLLocationCoordinate2DMake(43, -107.5); |