From 3bbc34ffe820b31ec7b7fac215a6f6316b21fbdb Mon Sep 17 00:00:00 2001 From: Michel Hidalgo Date: Mon, 15 Apr 2019 15:41:05 -0300 Subject: [PATCH] Fix bad output filter in logging demo tests. Signed-off-by: Michel Hidalgo --- logging_demo/test/test_logging_demo.py.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/logging_demo/test/test_logging_demo.py.in b/logging_demo/test/test_logging_demo.py.in index 2cd71b404..a71d3b7d9 100644 --- a/logging_demo/test/test_logging_demo.py.in +++ b/logging_demo/test/test_logging_demo.py.in @@ -50,7 +50,7 @@ class TestLoggingDemo(unittest.TestCase): proc_output.assertWaitFor( expected_output=launch_testing.tools.expected_output_from_file( path='@EXPECTED_OUTPUT_LOGGING_DEMO_MAIN_DEFAULT_SEVERITY@' - ), process=process_under_test, output_filter=self.output_filter, timeout=10 + ), process=process_under_test, output_filter=TestLoggingDemo.output_filter, timeout=30 ) def test_debug_severity(self, proc_output, process_under_test): @@ -58,5 +58,5 @@ class TestLoggingDemo(unittest.TestCase): proc_output.assertWaitFor( expected_output=launch_testing.tools.expected_output_from_file( path='@EXPECTED_OUTPUT_LOGGING_DEMO_MAIN_DEBUG_SEVERITY@' - ), process=process_under_test, output_filter=self.output_filter, timeout=10 + ), process=process_under_test, output_filter=TestLoggingDemo.output_filter, timeout=30 )