Skip to content

Commit 999aa7e

Browse files
authored
Specify velocities for trajectory forwarding test (#721)
Otherwise the trajectory points will never be sent.
1 parent a8e2b0b commit 999aa7e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ur_robot_driver/test/integration_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,7 @@ def test_joint_passthrough(self):
320320
for i, position in enumerate(position_list):
321321
point = JointTrajectoryPoint()
322322
point.positions = position
323+
point.velocities = [0, 0, 0, 0, 0, 0]
323324
point.time_from_start = rospy.Duration(duration_list[i])
324325
goal.trajectory.points.append(point)
325326
for i, joint_name in enumerate(goal.trajectory.joint_names):

0 commit comments

Comments
 (0)