From 27cab54b7da1a5fc69fc80d0325f10f0b7adc233 Mon Sep 17 00:00:00 2001 From: Daramora Kaminari Date: Wed, 13 Mar 2019 21:59:34 +0300 Subject: [PATCH] fix(common): Fix location test xy Fix location test case transposed x and y --- .../arcgis-rest-common/test/location.test.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/arcgis-rest-common/test/location.test.ts b/packages/arcgis-rest-common/test/location.test.ts index cce7320bb3..4ca47786c5 100644 --- a/packages/arcgis-rest-common/test/location.test.ts +++ b/packages/arcgis-rest-common/test/location.test.ts @@ -66,24 +66,24 @@ const stopsObjectsLatitudeLongitude3: ILocation[] = [ const stopsObjectsPoint: IPoint[] = [ { - x: 34.056383, - y: -117.195677 + x: -117.195677, + y: 34.056383 }, { - x: 33.812092, - y: -117.918976 + x: -117.918976, + y: 33.812092 } ]; const stopsObjectsPoint3: IPoint[] = [ { - x: 34.056383, - y: -117.195677, + x: -117.195677, + y: 34.056383, z: 10.11 }, { - x: 33.812092, - y: -117.918976, + x: -117.918976, + y: 33.812092, z: 8.43 } ];