Skip to content
This repository was archived by the owner on Nov 23, 2017. It is now read-only.

Commit 5bf22a4

Browse files
committed
More lenient delay expectancy in test_call_later().
1 parent 03e6f5f commit 5bf22a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/events_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def callback(arg):
238238
self.loop.run_forever()
239239
t1 = time.monotonic()
240240
self.assertEqual(results, ['hello world'])
241-
self.assertTrue(0.09 <= t1-t0 <= 0.12, t1-t0)
241+
self.assertTrue(0.08 <= t1-t0 <= 0.2, t1-t0)
242242

243243
def test_call_soon(self):
244244
results = []

0 commit comments

Comments
 (0)