From f14cd6456bc9996f7e8b765e27965947f7ee4d99 Mon Sep 17 00:00:00 2001 From: Andres Correa Casablanca Date: Fri, 18 Jan 2019 17:52:43 +0100 Subject: [PATCH] Decrease feature_ltor.py sensitivity to time Signed-off-by: Andres Correa Casablanca --- test/functional/feature_ltor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/feature_ltor.py b/test/functional/feature_ltor.py index 3476822fee..c523c9e0c3 100755 --- a/test/functional/feature_ltor.py +++ b/test/functional/feature_ltor.py @@ -68,7 +68,7 @@ def get_tests(self): def test_ltor_infringement_detection(self): # Just creating easily accessible outputs (coinbase) for next txns - for _ in range(8): + for _ in range(6): yield self.create_spendable_outputs() txns = [] @@ -168,7 +168,7 @@ def create_spendable_outputs(self): block = self.get_empty_block() self.spendable_outputs.append(block) - sleep(0.05) + sleep(0.1) return TestInstance([[block, True]], test_name='')