Skip to content

Commit 2075775

Browse files
committed
Fix bad output filter in logging demo tests.
Signed-off-by: Michel Hidalgo <michel@ekumenlabs.com>
1 parent c8585c0 commit 2075775

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

logging_demo/test/test_logging_demo.py.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ class TestLoggingDemo(unittest.TestCase):
5050
proc_output.assertWaitFor(
5151
expected_output=launch_testing.tools.expected_output_from_file(
5252
path='@EXPECTED_OUTPUT_LOGGING_DEMO_MAIN_DEFAULT_SEVERITY@'
53-
), process=process_under_test, output_filter=self.output_filter, timeout=10
53+
), process=process_under_test, output_filter=TestLoggingDemo.output_filter, timeout=30
5454
)
5555

5656
def test_debug_severity(self, proc_output, process_under_test):
5757
"""Test process' output at debug severity."""
5858
proc_output.assertWaitFor(
5959
expected_output=launch_testing.tools.expected_output_from_file(
6060
path='@EXPECTED_OUTPUT_LOGGING_DEMO_MAIN_DEBUG_SEVERITY@'
61-
), process=process_under_test, output_filter=self.output_filter, timeout=10
61+
), process=process_under_test, output_filter=TestLoggingDemo.output_filter, timeout=30
6262
)

0 commit comments

Comments
 (0)