Skip to content

Commit

Permalink
Relax tie check to always pass on CI bots
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Nov 1, 2017
1 parent 7dea13f commit 788c328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 788c328

Please sign in to comment.