Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Commit

Permalink
Fix pinch point test joint angles
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass committed Jan 5, 2024
1 parent ebed4ab commit 181a5fd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ TEST_F(ObjectiveFixture, InterpolateToPinchJointState)
auto store_request = std::make_shared<StoreJointState::Request>();
store_request->joint_state.name = { "shoulder_pan_joint", "shoulder_lift_joint", "elbow_joint",
"wrist_1_joint", "wrist_2_joint", "wrist_3_joint" };
store_request->joint_state.position = { 0, -0.78, -0.51, -1.57, 1.65, 0 };
store_request->joint_state.position = { -0.66, -2.10, -1.27, 0.60, 2.87, 0.36 };

auto store_result_future = store_client->async_send_request(store_request);
ASSERT_EQ(store_result_future.wait_for(kServiceWaitTime), std::future_status::ready)
Expand All @@ -99,7 +99,7 @@ TEST_F(ObjectiveFixture, InterpolateToNearPinchJointState)
auto store_request = std::make_shared<StoreJointState::Request>();
store_request->joint_state.name = { "shoulder_pan_joint", "shoulder_lift_joint", "elbow_joint",
"wrist_1_joint", "wrist_2_joint", "wrist_3_joint" };
store_request->joint_state.position = { 0, -0.78, -0.51, -1.57, 1.65, 0 };
store_request->joint_state.position = { -0.66, -2.10, -1.27, 0.60, 2.70, 0.36 };

auto store_result_future = store_client->async_send_request(store_request);
ASSERT_EQ(store_result_future.wait_for(kServiceWaitTime), std::future_status::ready)
Expand Down

0 comments on commit 181a5fd

Please sign in to comment.