Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update test_resource_manager.cpp - Fixed Typo #1609

Merged
merged 3 commits into from
Jul 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hardware_interface_testing/test/test_resource_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ void test_load_and_initialized_components_failure(const std::string & urdf)
EXPECT_FALSE(rm.command_interface_exists("joint3/max_acceleration"));
}

TEST_F(ResourceManagerTest, test_unitilizable_hardware)
TEST_F(ResourceManagerTest, test_uninitializable_hardware)
{
SCOPED_TRACE("test_unitilizable_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(
Expand Down
Loading