Skip to content

Commit 2a7b798

Browse files
committed
Revert "[3.13] pythongh-124873: Tolerate 100 ms in TimerfdTests on Android (pythonGH-127101) (python#127105)"
This reverts commit c09366b.
1 parent a2ee899 commit 2a7b798

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_os.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4177,9 +4177,9 @@ def test_eventfd_select(self):
41774177
@support.requires_linux_version(2, 6, 30)
41784178
class TimerfdTests(unittest.TestCase):
41794179
# 1 ms accuracy is reliably achievable on every platform except Android
4180-
# emulators, where we allow 100 ms (gh-124873).
4180+
# emulators, where we allow 10 ms (gh-108277).
41814181
if sys.platform == "android" and platform.android_ver().is_emulator:
4182-
CLOCK_RES_PLACES = 1
4182+
CLOCK_RES_PLACES = 2
41834183
else:
41844184
CLOCK_RES_PLACES = 3
41854185

0 commit comments

Comments
 (0)