Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions ur_robot_driver/test/integration_test_controller_switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,14 +203,16 @@ def test_activating_controller_with_running_position_controller_fails(self):
],
).ok
)
self.assertFalse(
self._controller_manager_interface.switch_controller(
strictness=SwitchController.Request.STRICT,
activate_controllers=[
"forward_position_controller",
],
).ok
)
# This got removed on 2025-10-29 due to a change in ros2_control
# See https://github.com/ros-controls/ros2_control/issues/2758 for details
# self.assertFalse(
# self._controller_manager_interface.switch_controller(
# strictness=SwitchController.Request.STRICT,
# activate_controllers=[
# "forward_position_controller",
# ],
# ).ok
# )
self.assertFalse(
self._controller_manager_interface.switch_controller(
strictness=SwitchController.Request.STRICT,
Expand Down
Loading