Skip to content

Commit

Permalink
increase activation test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Aron Svastits committed Mar 11, 2024
1 parent 2013761 commit f648fef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kuka_iiqka_eac_driver/test/test_driver_activation.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def generate_test_description():
}.items(),
),
launch.actions.TimerAction(
period=5.0,
period=10.0,
actions=[
launch.actions.ExecuteProcess(
cmd=["ros2", "lifecycle", "set", "robot_manager", "configure"],
Expand All @@ -55,7 +55,7 @@ def generate_test_description():
],
),
launch.actions.TimerAction(
period=10.0,
period=15.0,
actions=[
launch.actions.ExecuteProcess(
cmd=["ros2", "lifecycle", "set", "robot_manager", "activate"],
Expand All @@ -81,6 +81,6 @@ def test_read_stdout(self, proc_output):
)
# Check for successful configuration and activation
proc_output.assertWaitFor(
"Successful 'configure' of hardware 'lbr_iisy3_r760'", timeout=10
"Successful 'configure' of hardware 'lbr_iisy3_r760'", timeout=15
)
proc_output.assertWaitFor("Successful 'activate' of hardware 'lbr_iisy3_r760'", timeout=15)
proc_output.assertWaitFor("Successful 'activate' of hardware 'lbr_iisy3_r760'", timeout=20)

0 comments on commit f648fef

Please sign in to comment.