Skip to content

Commit

Permalink
Fix test criterion
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Jan 29, 2025
1 parent f8ffbb1 commit ff4e627
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gz_ros2_control_tests/tests/effort_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_clock(self):

def test_controller_running(self, proc_output):

cnames = ['effort_controller', 'joint_state_broadcaster']
cnames = ['joint_trajectory_controller', 'joint_state_broadcaster']

check_controllers_running(self.node, cnames)

Expand Down
6 changes: 5 additions & 1 deletion gz_ros2_control_tests/tests/velocity_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,11 @@ def test_clock(self):

def test_controller_running(self, proc_output):

cnames = ['velocity_controller', 'joint_state_broadcaster', 'imu_sensor_broadcaster']
cnames = [
'joint_trajectory_controller',
'joint_state_broadcaster',
'imu_sensor_broadcaster'
]

check_controllers_running(self.node, cnames)

Expand Down

0 comments on commit ff4e627

Please sign in to comment.