We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4018dec commit a0e87edCopy full SHA for a0e87ed
ros2topic/test/test_cli.py
@@ -600,13 +600,13 @@ def test_topic_echo_no_publisher(self):
600
with self.launch_topic_command(
601
arguments=['echo', '/this_topic_has_no_pub'],
602
) as topic_command:
603
- assert topic_command.wait_for_shutdown(timeout=2)
+ assert topic_command.wait_for_shutdown(timeout=10)
604
assert topic_command.exit_code != launch_testing.asserts.EXIT_OK
605
assert launch_testing.tools.expect_output(
606
expected_lines=[
607
'Could not determine the type for the passed topic',
608
],
609
- text=topic_command.output,
+ text=topic_command.stderr,
610
strict=True
611
)
612
0 commit comments