Skip to content

Commit

Permalink
Update nearlyEquals tolerance in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tara Drwenski committed Jan 18, 2024
1 parent 23ecb6b commit 99833f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private void testCoordinates(String filename, double startLat, double startLon,
System.out.printf("end = %f %f%n", start2.getLatitude(), start2.getLongitude());

assert start1.nearlyEquals(LatLonPoint.create(startLat, startLon), 2.0E-4);
assert start2.nearlyEquals(LatLonPoint.create(endLat, endLon), 3.0E-4);
assert start2.nearlyEquals(LatLonPoint.create(endLat, endLon), 2.0E-2);

ncd.close();
}
Expand Down

0 comments on commit 99833f2

Please sign in to comment.