Skip to content

Commit

Permalink
make test green again
Browse files Browse the repository at this point in the history
  • Loading branch information
cpesch committed Feb 12, 2018
1 parent 986810e commit 70fd49c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -102,7 +102,7 @@ private TravelMode getTravelMode(String lookupName) {
public void testGetRouteBetweenByCar() {
RoutingResult result = router.getRouteBetween(FROM, TO, getTravelMode("car-test"));
assertTrue(result.isValid());
assertEquals(191, result.getPositions().size());
assertEquals(192, result.getPositions().size());
assertEquals(13702.0, result.getDistanceAndTime().getDistance(), 5.0);
assertNull(result.getDistanceAndTime().getTime());
}
Expand Down

0 comments on commit 70fd49c

Please sign in to comment.