diff --git a/roseus/test/test-simple-server-cancel.l b/roseus/test/test-simple-server-cancel.l index d4d843ebe..ada42a017 100644 --- a/roseus/test/test-simple-server-cancel.l +++ b/roseus/test/test-simple-server-cancel.l @@ -28,8 +28,11 @@ (send server :worker) (send client :spin-once) (ros::ros-info "action server returned with status: ~S" (send client :get-state)) - (assert (equal actionlib_msgs::GoalStatus::*PREEMPTED* - (send client :get-state))))))) + (assert (equal actionlib_msgs::GoalStatus::*PREEMPTED* (send client :get-state)) + (format nil "GoalStatus is not equal to actionlib_msgs::GoalStatus::*PREEMPTED*: ~A is expected, but client get ~A" + actionlib_msgs::GoalStatus::*PREEMPTED* + (send client :get-state))) + )) (ros::roseus "server_cancel") (run-all-tests)