From d04b7599139ff974ddfbc9fee1a852a26b6a36bb Mon Sep 17 00:00:00 2001 From: shortcutme Date: Mon, 17 Sep 2018 15:40:44 +0200 Subject: [PATCH] Allow more time inaccuracy for noparallel test --- src/Test/TestNoparallel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Test/TestNoparallel.py b/src/Test/TestNoparallel.py index 1f1d0140..67ef0caf 100644 --- a/src/Test/TestNoparallel.py +++ b/src/Test/TestNoparallel.py @@ -119,4 +119,4 @@ class TestNoparallel: assert obj1.counted + obj2.counted == 10 taken = time.time() - s - assert 0.11 > taken >= 0.1 # 2 * 0.05s count = ~0.1s + assert 0.12 > taken >= 0.1 # 2 * 0.05s count = ~0.1s