Skip to content

Commit 11d3cfc

Browse files
committed
Rebase onto #1311
Signed-off-by: Stephen Brawner <brawner@gmail.com>
1 parent b252517 commit 11d3cfc

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

rclcpp_action/test/test_client.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -876,9 +876,8 @@ TEST_F(TestClientAgainstServer, send_rcl_errors)
876876
"lib:rclcpp_action", rcl_action_send_result_request, RCL_RET_ERROR);
877877
auto future_goal_handle = action_client->async_send_goal(goal, send_goal_ops);
878878
dual_spin_until_future_complete(future_goal_handle);
879-
EXPECT_THROW(
880-
future_goal_handle.get(),
881-
rclcpp::exceptions::RCLError);
879+
auto goal_handle = future_goal_handle.get();
880+
EXPECT_EQ(rclcpp_action::GoalStatus::STATUS_UNKNOWN, goal_handle->get_status());
882881
}
883882
{
884883
ActionGoal goal;

0 commit comments

Comments
 (0)