Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Jan 21, 2025
1 parent 61a4ff9 commit b8804e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion include/motis/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ struct config {
unsigned http_timeout_{10};
bool incremental_rt_update_{false};
bool use_osm_stop_coordinates_{false};
bool extend_missing_footpaths_{true};
bool extend_missing_footpaths_{false};
std::uint16_t max_footpath_length_{15};
std::optional<std::string> default_timezone_{};
std::map<std::string, dataset> datasets_{};
Expand Down
2 changes: 2 additions & 0 deletions test/routing_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,8 @@ TEST(motis, routing) {
config::timetable{
.first_day_ = "2019-05-01",
.num_days_ = 2,
.use_osm_stop_coordinates_ = true,
.extend_missing_footpaths_ = false,
.datasets_ = {{"test", {.path_ = std::string{kGTFS}}}}},
.gbfs_ = {{.feeds_ = {{"CAB", {.url_ = "./test/resources/gbfs"}}}}},
.street_routing_ = true,
Expand Down

0 comments on commit b8804e9

Please sign in to comment.