Skip to content

Commit

Permalink
Update test_resource_manager.cpp - additional typo correction
Browse files Browse the repository at this point in the history
Fixed ininitializable to uninitializable (Even for a native English speaker that's a rough one)
  • Loading branch information
Parker-Drouillard authored Jul 12, 2024
1 parent e71c359 commit bf04cf8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hardware_interface_testing/test/test_resource_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,16 +137,16 @@ void test_load_and_initialized_components_failure(const std::string & urdf)
EXPECT_FALSE(rm.command_interface_exists("joint3/max_acceleration"));
}

TEST_F(ResourceManagerTest, test_unitializable_hardware)
TEST_F(ResourceManagerTest, test_uninitializable_hardware)
{
SCOPED_TRACE("test_unitializable_hardware_no_validation");
SCOPED_TRACE("test_uninitializable_hardware_no_validation");
// If the the hardware can not be initialized and load_and_initialize_components didn't try to
// validate the interfaces, the interface should not show up
test_load_and_initialized_components_failure(
ros2_control_test_assets::minimal_uninitializable_robot_urdf);
}

TEST_F(ResourceManagerTest, initialization_with_urdf_and_manual_validation)
TEST_F(ResourceManagerTest, uninitialization_with_urdf_and_manual_validation)
{
// we validate the results manually
TestableResourceManager rm(node_, ros2_control_test_assets::minimal_robot_urdf, false);
Expand Down

0 comments on commit bf04cf8

Please sign in to comment.