File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 20
20
from launch import LaunchDescription , LaunchService
21
21
22
22
23
- class Ros2LaunchManager :
23
+ class ROS2LaunchManager :
24
24
def __init__ (self ) -> None :
25
25
self ._stop_event : Optional [Event ] = None
26
26
self ._process : Optional [multiprocessing .Process ] = None
Original file line number Diff line number Diff line change 34
34
from tf2_geometry_msgs import do_transform_pose , do_transform_pose_stamped
35
35
36
36
from rai_interfaces .srv import ManipulatorMoveTo
37
- from rai_sim .launch_manager import Ros2LaunchManager
37
+ from rai_sim .launch_manager import ROS2LaunchManager
38
38
from rai_sim .simulation_bridge import (
39
39
Entity ,
40
40
SceneConfig ,
@@ -67,7 +67,7 @@ def __init__(
67
67
):
68
68
super ().__init__ (logger = logger )
69
69
self .connector = connector
70
- self .manager = Ros2LaunchManager ()
70
+ self .manager = ROS2LaunchManager ()
71
71
self .current_sim_process = None
72
72
self .current_binary_path = None
73
73
Original file line number Diff line number Diff line change 35
35
from rclpy .node import Node
36
36
from rclpy .qos import QoSProfile
37
37
38
- from rai_sim .launch_manager import Ros2LaunchManager
38
+ from rai_sim .launch_manager import ROS2LaunchManager
39
39
from rai_sim .o3de .o3de_bridge import O3DExROS2Bridge , O3DExROS2SimulationConfig
40
40
from rai_sim .simulation_bridge import Entity , SceneConfig , SpawnedEntity
41
41
@@ -69,12 +69,12 @@ def test_load_scene_config(sample_base_yaml_config: Path):
69
69
70
70
71
71
class TestO3DExROS2Bridge (unittest .TestCase ):
72
- @patch ("rai_sim.o3de.o3de_bridge.Ros2LaunchManager " )
72
+ @patch ("rai_sim.o3de.o3de_bridge.ROS2LaunchManager " )
73
73
def setUp (self , mock_launch_manager_class ):
74
74
self .mock_connector = MagicMock (spec = ROS2Connector )
75
75
self .mock_logger = MagicMock ()
76
76
77
- self .mock_launch_manager = MagicMock (spec = Ros2LaunchManager )
77
+ self .mock_launch_manager = MagicMock (spec = ROS2LaunchManager )
78
78
mock_launch_manager_class .return_value = self .mock_launch_manager
79
79
80
80
self .bridge = O3DExROS2Bridge (
You can’t perform that action at this time.
0 commit comments