We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03d8604 commit 1b7e894Copy full SHA for 1b7e894
graalpython/lib-python/3/test/test_asyncio/test_base_events.py
@@ -367,7 +367,9 @@ def test__run_once(self):
367
self.loop._run_once()
368
369
t = self.loop._selector.select.call_args[0][0]
370
- self.assertTrue(9.5 < t < 10.5, t)
+ # GR-45013 - Truffle change: we may pump slower than CPython and have a
371
+ # lower remaining timer
372
+ self.assertTrue(8 < t < 10.5, t)
373
self.assertEqual([h2], self.loop._scheduled)
374
self.assertTrue(self.loop._process_events.called)
375
0 commit comments