Thanks to visit codestin.com Credit goes to github.com
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 317b26e commit 0cfccccCopy full SHA for 0cfcccc
1 file changed
Lib/test/test_os.py
@@ -3929,8 +3929,8 @@ def test_eventfd_select(self):
3929
@unittest.skipUnless(hasattr(os, 'timerfd_create'), 'requires os.timerfd_create')
3930
@support.requires_linux_version(2, 6, 30)
3931
class TimerfdTests(unittest.TestCase):
3932
- # Tolerate a difference of 50 us
3933
- CLOCK_RES_NS = 50_000
+ # Tolerate a difference of 1 ms
+ CLOCK_RES_NS = 1_000_000
3934
CLOCK_RES = CLOCK_RES_NS * 1e-9
3935
3936
def timerfd_create(self, *args, **kwargs):
0 commit comments