Skip to content

Commit

Permalink
Fix node name
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Nov 17, 2024
1 parent 4d9181f commit 3e62d34
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ def test_node_start(self):
start = time.time()
found = False
while time.time() - start < 2.0 and not found:
found = "/publisher_position_trajectory_controller" in self.node.get_node_names()
found = "publisher_position_trajectory_controller" in self.node.get_node_names()
time.sleep(0.1)
assert found, "/publisher_position_trajectory_controller not found!"
assert found, "publisher_position_trajectory_controller not found!"


@launch_testing.post_shutdown_test()
Expand Down

0 comments on commit 3e62d34

Please sign in to comment.