Skip to content

Commit

Permalink
Remove commented prints
Browse files Browse the repository at this point in the history
  • Loading branch information
bmagyar authored Dec 30, 2023
1 parent 5181b95 commit c31ed73
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions steering_controllers_library/test/test_steering_odometry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,6 @@ TEST(TestSteeringOdometry, ackermann_back_kin_left)
auto cmd1 = std::get<1>(cmd); // steer
EXPECT_LT(cmd1[0], cmd1[1]); // right (outer) < left (inner)
EXPECT_GT(cmd1[0], 0);
// std::cout << "\nsteer right (outer)" << cmd1[0] << std::endl;
// std::cout << "\nsteer left (inner)" << cmd1[1] << std::endl;
}

TEST(TestSteeringOdometry, ackermann_back_kin_right)
Expand All @@ -109,6 +107,4 @@ TEST(TestSteeringOdometry, ackermann_back_kin_right)
auto cmd1 = std::get<1>(cmd); // steer
EXPECT_GT(std::abs(cmd1[0]), std::abs(cmd1[1])); // abs right (inner) > abs left (outer)
EXPECT_LT(cmd1[0], 0);
// std::cout << "\nsteer right (inner)" << cmd1[0] << std::endl;
// std::cout << "\nsteer left (outer)" << cmd1[1] << std::endl;
}

0 comments on commit c31ed73

Please sign in to comment.