Make test_call_later_rounding more stable (but less strict)

This commit is contained in:
Yury Selivanov 2019-03-20 13:24:47 -04:00
parent 8f037a68f7
commit 06335f3e37
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ class _TestBase:
started = int(round(self.loop.time() * 1000))
self.loop.run_forever()
finished = int(round(self.loop.time() * 1000))
self.assertGreaterEqual(finished - started, 70)
self.assertGreaterEqual(finished - started, 69)
def test_call_at(self):
if os.environ.get('TRAVIS_OS_NAME'):