Skip to content
Snippets Groups Projects
Commit fa9bfa02 authored by Fabian Reister's avatar Fabian Reister
Browse files

OmniPlatformKinematicsTest: fixing test

parent e90d862c
No related branches found
No related tags found
No related merge requests found
......@@ -90,8 +90,8 @@ BOOST_AUTO_TEST_CASE(testMoveForward)
BOOST_CHECK_CLOSE(std::abs(wheelVelocities(1)), std::abs(wheelVelocities(2)), 0.001);
// .. but with different signs
BOOST_CHECK_LE(wheelVelocities(1), 0.0);
BOOST_CHECK_GE(wheelVelocities(2), 0.0);
BOOST_CHECK_GE(wheelVelocities(1), 0.0);
BOOST_CHECK_LE(wheelVelocities(2), 0.0);
}
BOOST_AUTO_TEST_CASE(testRotate)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment