Skip to content

Commit

Permalink
fix(common): Fix location test xy
Browse files Browse the repository at this point in the history
Fix location test case transposed x and y
  • Loading branch information
DKaminari committed Mar 13, 2019
1 parent 6b2a77c commit 27cab54
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/arcgis-rest-common/test/location.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
];
Expand Down

0 comments on commit 27cab54

Please sign in to comment.