Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
Khlopkova Olga
a9f997d1c7 Fixed unit-test 2021-02-05 17:52:57 +03:00
Khlopkova Olga
327f414740 Changed default StopLocationType. 2021-02-05 17:50:49 +03:00
2 changed files with 2 additions and 2 deletions

View file

@ -888,7 +888,7 @@ struct Stop
Text stop_code;
Text stop_desc;
Text stop_url;
StopLocationType location_type = StopLocationType::GenericNode;
StopLocationType location_type = StopLocationType::StopOrPlatform;
Text stop_timezone;
Text wheelchair_boarding;
Id level_id;

View file

@ -395,7 +395,7 @@ TEST_CASE("Stops")
CHECK_EQ(stops[0].stop_id, "FUR_CREEK_RES");
CHECK(stops[0].stop_desc.empty());
CHECK_EQ(stops[0].stop_name, "Furnace Creek Resort (Demo)");
CHECK_EQ(stops[0].location_type, StopLocationType::GenericNode);
CHECK_EQ(stops[0].location_type, StopLocationType::StopOrPlatform);
CHECK(stops[0].zone_id.empty());
auto const & stop = feed.get_stop("FUR_CREEK_RES");