Skip to content

Commit

Permalink
test/mjcf: fix test of equality constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarpent committed Sep 22, 2024
1 parent 9091a41 commit 4775bfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unittest/mjcf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1259,9 +1259,9 @@ BOOST_AUTO_TEST_CASE(test_contact_parsing)

BOOST_CHECK_EQUAL(contact_models.size(), 4);
BOOST_CHECK_EQUAL(
contact_models[0].joint1_placement.translation(), pinocchio::SE3::Vector3(0.35012, 0, 0));
contact_models[0].joint1_placement.translation(), pinocchio::SE3::Vector3(0.50120, 0, 0));
BOOST_CHECK_EQUAL(
contact_models[1].joint1_placement.translation(), pinocchio::SE3::Vector3(0.50120, 0, 0));
contact_models[1].joint1_placement.translation(), pinocchio::SE3::Vector3(0.35012, 0, 0));
BOOST_CHECK_EQUAL(
contact_models[2].joint1_placement.translation(), pinocchio::SE3::Vector3(0.50120, 0, 0));
BOOST_CHECK_EQUAL(
Expand Down

0 comments on commit 4775bfa

Please sign in to comment.