Skip to content

Commit

Permalink
Added parens
Browse files Browse the repository at this point in the history
  • Loading branch information
rijnb committed Oct 2, 2018
1 parent 0e05707 commit 6538c1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public void testGetPointAtOffset() {

final GeoPoint p5 = poly.getPointAtOffset(-Math.sqrt((Geo.METERS_PER_DEGREE_LAT * Geo.METERS_PER_DEGREE_LAT) +
(4 * Geo.METERS_PER_DEGREE_LON_EQUATOR * Geo.METERS_PER_DEGREE_LON_EQUATOR)) - Geo.METERS_PER_DEGREE_LON_EQUATOR
- Geo.METERS_PER_DEGREE_LAT / 2.0);
- (Geo.METERS_PER_DEGREE_LAT / 2.0));
Assert.assertEquals(x2half.getLat(), p5.getLat(), delta);
Assert.assertEquals(x2half.getLon(), p5.getLon(), delta);
}
Expand Down

0 comments on commit 6538c1d

Please sign in to comment.