From 788c328376300c6e479576991c273ace830e82a6 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Wed, 1 Nov 2017 13:37:14 +0200 Subject: [PATCH] Relax tie check to always pass on CI bots --- tests/test_connector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_connector.py b/tests/test_connector.py index ddcf67c574b..8aaf6d0445f 100644 --- a/tests/test_connector.py +++ b/tests/test_connector.py @@ -673,7 +673,7 @@ def test_release_not_started(loop): # assert conn._conns == {1: [(proto, 10)]} rec = conn._conns[1] assert rec[0][0] == proto - assert rec[0][1] == pytest.approx(loop.time(), abs=0.01) + assert rec[0][1] == pytest.approx(loop.time(), abs=0.05) assert not proto.close.called conn.close()