Skip to content

Commit 06335f3

Browse files
committed
Make test_call_later_rounding more stable (but less strict)
1 parent 8f037a6 commit 06335f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def cb():
216216
started = int(round(self.loop.time() * 1000))
217217
self.loop.run_forever()
218218
finished = int(round(self.loop.time() * 1000))
219-
self.assertGreaterEqual(finished - started, 70)
219+
self.assertGreaterEqual(finished - started, 69)
220220

221221
def test_call_at(self):
222222
if os.environ.get('TRAVIS_OS_NAME'):

0 commit comments

Comments
 (0)