Skip to content

Commit

Permalink
Fixed len
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Delicat <[email protected]>
  • Loading branch information
delihus committed Nov 29, 2023
1 parent 5802601 commit 9019ff3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rosbot_bringup/test/test_multirobot_ekf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
def generate_test_description():
rosbot_bringup = get_package_share_directory("rosbot_bringup")
actions = []
for i in range(robot_names):
for i in range(len(robot_names)):
bringup_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
PathJoinSubstitution(
Expand Down
2 changes: 1 addition & 1 deletion rosbot_controller/test/test_multirobot_controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
def generate_test_description():
rosbot_controller = get_package_share_directory("rosbot_controller")
actions = []
for i in range(robot_names):
for i in range(len(robot_names)):
controller_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
PathJoinSubstitution(
Expand Down

0 comments on commit 9019ff3

Please sign in to comment.