Skip to content

Commit

Permalink
Removed redundant underscore again
Browse files Browse the repository at this point in the history
Signed-off-by: TaikiYamada4 <[email protected]>
  • Loading branch information
TaikiYamada4 committed Oct 28, 2024
1 parent 118596e commit d1e0a26
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ TEST_F(TestSuite, MissingRegulatoryElementOfTrafficLight) // NOLINT for gtest
LaneletMapPtr test_map_ptr = lanelet::utils::createMap({tl_no_reg_elem});
addTestMap(test_map_ptr);

lanelet::validation::MissingRegulatoryElementsForTrafficLightsValidator checker_;
const auto & issues = checker_(*test_map_ptr);
lanelet::validation::MissingRegulatoryElementsForTrafficLightsValidator checker;
const auto & issues = checker(*test_map_ptr);

uint8_t expected_num_issues = 1;
static constexpr const char * expected_message =
Expand All @@ -206,7 +206,7 @@ TEST_F(TestSuite, MissingRegulatoryElementOfCrosswalk) // NOLINT for gtest
addTestMap(test_map_ptr);

lanelet::validation::MissingRegulatoryElementsForCrosswalksValidator checker;
const auto & issues = checker_(*test_map_ptr);
const auto & issues = checker(*test_map_ptr);

uint8_t expected_num_issues = 1;
static constexpr const char * expected_message =
Expand All @@ -229,8 +229,8 @@ TEST_F(TestSuite, MissingRegulatoryElementOfStopLine) // NOLINT for gtest
LaneletMapPtr test_map_ptr = lanelet::utils::createMap({sl_no_reg_elem});
addTestMap(test_map_ptr);

lanelet::validation::MissingRegulatoryElementsForStopLinesValidator checker_;
const auto & issues = checker_(*test_map_ptr);
lanelet::validation::MissingRegulatoryElementsForStopLinesValidator checker;
const auto & issues = checker(*test_map_ptr);

uint8_t expected_num_issues = 1;
static constexpr const char * expected_message =
Expand Down

0 comments on commit d1e0a26

Please sign in to comment.