Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
robertik10 committed Jan 25, 2024
1 parent 19686b0 commit 5b25708
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/planning/src/behavior_agent/behaviours/lane_change.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def initialise(self):
self.change_detected = False
self.change_distance = np.inf
self.virtual_change_distance = np.inf
self.curr_behavior_pub.publish(bs.lc_init.name)
self.curr_behavior_pub.publish(bs.lc_app_init.name)

def update(self):
"""
Expand Down
2 changes: 1 addition & 1 deletion code/planning/src/local_planner/collision_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self):
# Publisher for emergency stop
self.emergency_pub = self.new_publisher(
Bool,
f"/paf/{self.role_name}/emergency_deactivated",
f"/paf/{self.role_name}/emergency",
qos_profile=1)
# Publisher for distance to collision
self.collision_pub = self.new_publisher(
Expand Down

0 comments on commit 5b25708

Please sign in to comment.