Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
franzrammerstorfer committed Dec 13, 2023
1 parent ddd8e2b commit 5ab4edf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ TEST(TestSteeringOdometry, ackermann_back_kin_left)
EXPECT_GT(cmd0[0], cmd0[1]); // right (outer) > left (inner)
EXPECT_GT(cmd0[0], 0);
auto cmd1 = std::get<1>(cmd); // steer
EXPECT_LT(cmd1[0], cmd1[1]); // right (outer) < left (inner)
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;
Expand Down

0 comments on commit 5ab4edf

Please sign in to comment.