From 0cbe057f5fe1b572425cb7ec2d6d32fc2f571cb7 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sat, 10 May 2014 17:50:05 +0200 Subject: [PATCH] Increase test output delay to avoid bogus test fails --- tests/integration/tools_tests.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/integration/tools_tests.py b/tests/integration/tools_tests.py index 1f987a3..7c6feca 100644 --- a/tests/integration/tools_tests.py +++ b/tests/integration/tools_tests.py @@ -21,11 +21,11 @@ def setup_logger(): def test_log_call_output_order(): logged = setup_logger() fixture = """ -2 0.00 one\\\\n -1 0.02 two\\\\n -1 0.02 four\\\\n -2 0.02 No, three..\\\\n -1 0.02 three\\\\n +2 0.0 one\\\\n +1 0.2 two\\\\n +1 0.2 four\\\\n +2 0.2 No, three..\\\\n +1 0.2 three\\\\n """ status, stdout, stderr = log_call([subprocess_path], stdin=fixture) eq_(status, 0)