Skip to content

Commit e3b00b8

Browse files
committed
Make test_call_later_rounding more stable (but less strict)
1 parent 2b6620b commit e3b00b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_base.py

Lines changed: 1 addition & 1 deletion
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)