Skip to content

Commit

Permalink
chore: remove debug printouts
Browse files Browse the repository at this point in the history
  • Loading branch information
aoles committed Apr 12, 2024
1 parent 1b711d1 commit 5e14e96
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2018,7 +2018,7 @@ void testWheelchairWidthRestriction() {
.then()
.assertThat()
.body("any { it.key == 'routes' }", is(true))
.body("routes[0].summary.distance", is(158.7f))
.body("routes[0].summary.distance", is(158.8f))
.body("routes[0].summary.duration", is(114.3f))
.statusCode(200);
}
Expand Down
2 changes: 1 addition & 1 deletion ors-api/src/test/resources/application-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ors:
maximum_intervals: 10

engine:
source_file: ./src/test/files/heidelberg.osm.gz
source_file: ./src/test/files/heidelberg.ors.pbf
graphs_root_path: graphs-apitests
elevation:
cache_path: ./src/test/files/elevation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,6 @@ public void processWay(ReaderWay way, Coordinate[] coords, Map<Integer, Map<Stri
way.setTag(TAG_KEY_COUNTRY1, countries[0]);
way.setTag(TAG_KEY_COUNTRY2, countries[0]);
}
//DEBUG OUTPUT
if (countries.length > 0)
System.out.println(way.getId() + ": " + String.join(",", countries));
} else {
wayNodeTags = new HashMap<>();
if (nodeTags != null) {
Expand Down

0 comments on commit 5e14e96

Please sign in to comment.