Skip to content

Commit

Permalink
Fix one more instance of ignition::math::Matrix3d
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <scpeters@openrobotics.org>
  • Loading branch information
scpeters committed Nov 30, 2022
1 parent db63c6d commit eeb8272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/urdf_gazebo_extensions.cc
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ TEST(SDFParser, FixedJointSimple)
ASSERT_NE(nullptr, link);
auto massMatrix = link->Inertial().MassMatrix();
EXPECT_DOUBLE_EQ(2.0, massMatrix.Mass());
EXPECT_EQ(2.0 * ignition::math::Matrix3d::Identity, massMatrix.Moi());
EXPECT_EQ(2.0 * gz::math::Matrix3d::Identity, massMatrix.Moi());

EXPECT_EQ(0u, model->JointCount());

Expand Down

0 comments on commit eeb8272

Please sign in to comment.