urdf: Explicitly cast shared_ptr to bool in unit test. (#158)
This commit is contained in:
parent
f8cb99cd0f
commit
1bc266932f
|
@ -143,7 +143,7 @@ TEST_F(TestParser, test)
|
||||||
|
|
||||||
EXPECT_EQ(robot.getName(), robot_name);
|
EXPECT_EQ(robot.getName(), robot_name);
|
||||||
boost::shared_ptr<const urdf::Link> root = robot.getRoot();
|
boost::shared_ptr<const urdf::Link> root = robot.getRoot();
|
||||||
ASSERT_TRUE(root);
|
ASSERT_TRUE(static_cast<bool>(root));
|
||||||
EXPECT_EQ(root->name, root_name);
|
EXPECT_EQ(root->name, root_name);
|
||||||
|
|
||||||
ASSERT_TRUE(checkModel(robot));
|
ASSERT_TRUE(checkModel(robot));
|
||||||
|
|
Loading…
Reference in New Issue