From 063a58bb8a7c2f213c07b343a5e1fe48944f1f08 Mon Sep 17 00:00:00 2001 From: Sarah Julia Kriesch Date: Thu, 27 Oct 2022 09:20:40 +0200 Subject: [PATCH] Fix asertion error with 0,24 instead of 0,2 #459 Signed-off-by: Sarah Julia Kriesch --- tests/bugfixes/nosetests/test_430_respect_timeout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bugfixes/nosetests/test_430_respect_timeout.py b/tests/bugfixes/nosetests/test_430_respect_timeout.py index f21a5468..ed5866b9 100644 --- a/tests/bugfixes/nosetests/test_430_respect_timeout.py +++ b/tests/bugfixes/nosetests/test_430_respect_timeout.py @@ -51,4 +51,4 @@ def my_callback(request, url, headers): # And the total execution time should be less than 0.2 seconds event.set() total_time = time.time() - started_at - total_time.should.be.lower_than(0.2) + total_time.should.be.lower_than(0.24)