Skip to content

Commit

Permalink
Make lowest point in test trajectory be at [0.1]
Browse files Browse the repository at this point in the history
Otherwise some robot models collide with the ground during execution.
  • Loading branch information
fmauch committed Apr 9, 2024
1 parent e1df6b1 commit dcb21ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ur_simulation_gazebo/test/test_gazebo.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def test_trajectory(self, ur_type):
"""Test robot movement."""
# Construct test trajectory
test_trajectory = [
(Duration(sec=6, nanosec=0), [0.0 for j in ROBOT_JOINTS]),
(Duration(sec=6, nanosec=0), [-0.1 for j in ROBOT_JOINTS]),
(Duration(sec=9, nanosec=0), [-0.5 for j in ROBOT_JOINTS]),
(Duration(sec=12, nanosec=0), [-1.0 for j in ROBOT_JOINTS]),
]
Expand Down

0 comments on commit dcb21ba

Please sign in to comment.