File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
launch_testing/launch_testing Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -122,10 +122,6 @@ def run(self):
122122 # the test and add our own event handlers for process IO and process exit:
123123 launch_description = LaunchDescription ([
124124 * self ._test_run_preamble ,
125- launch .actions .IncludeLaunchDescription (
126- launch .LaunchDescriptionSource (launch_description = test_ld ),
127- launch_arguments = parsed_launch_arguments
128- ),
129125 RegisterEventHandler (
130126 OnProcessExit (on_exit = lambda info , unused : proc_info .append (info ))
131127 ),
@@ -135,6 +131,10 @@ def run(self):
135131 on_stderr = proc_output .append ,
136132 )
137133 ),
134+ launch .actions .IncludeLaunchDescription (
135+ launch .LaunchDescriptionSource (launch_description = test_ld ),
136+ launch_arguments = parsed_launch_arguments
137+ ),
138138 ])
139139
140140 self ._launch_service .include_launch_description (
You can’t perform that action at this time.
0 commit comments