Skip to content
Snippets Groups Projects

Fix sanitizer checks

Merged Xiao Pan requested to merge fix_sanitizer_check into main
2 files
+ 6
6
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -47,7 +47,7 @@ TEST(OpenDriveTest, GivenValidOpenDriveMap_WhenParsingMap_ThenParsedDataIsCorrec
ASSERT_EQ(expected_lanesections_size, map.id_to_road.at("0").get_lanesections().size());
ASSERT_EQ(expected_lane_size, map.id_to_road.at("0").get_lanesections()[0].get_lanes().size());
const auto& center_lane = map.id_to_road.at("0").get_lanesections()[0].id_to_lane.at(0);
const auto center_lane = map.id_to_road.at("0").get_lanesections()[0].id_to_lane.at(0);
EXPECT_EQ(expected_center_lane_type, center_lane.type);
const auto& center_line_roadmarkgroups = center_lane.roadmark_groups;
Loading