Skip to content

Commit a0e87ed

Browse files
committed
Fix failing tests on Windows
Signed-off-by: Michel Hidalgo <[email protected]>
1 parent 4018dec commit a0e87ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ros2topic/test/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,13 +600,13 @@ def test_topic_echo_no_publisher(self):
600600
with self.launch_topic_command(
601601
arguments=['echo', '/this_topic_has_no_pub'],
602602
) as topic_command:
603-
assert topic_command.wait_for_shutdown(timeout=2)
603+
assert topic_command.wait_for_shutdown(timeout=10)
604604
assert topic_command.exit_code != launch_testing.asserts.EXIT_OK
605605
assert launch_testing.tools.expect_output(
606606
expected_lines=[
607607
'Could not determine the type for the passed topic',
608608
],
609-
text=topic_command.output,
609+
text=topic_command.stderr,
610610
strict=True
611611
)
612612

0 commit comments

Comments
 (0)