You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So far we had no error here probably because nodes is an empty list since there is no launch entity of type rclpy.node.Node, and then no assertion is made:
Here we are filtering a launch entity of type
rclpy.node.Node
, but I think it should belaunch_ros.actions.Node
insteadxacro_live/test/test_xacro_live_view_launch.py
Line 71 in f63adbd
Some lines further we try to use
launch_ros.actions.Node
methods with a supposedrclpy.node.Node
object:xacro_live/test/test_xacro_live_view_launch.py
Line 90 in f63adbd
So far we had no error here probably because nodes is an empty list since there is no launch entity of type rclpy.node.Node, and then no assertion is made:
Then we must also add an extra assertion to make sure nodes is not empty (or just make sure it is the same size as expected_nodes)
The text was updated successfully, but these errors were encountered: