less strict time bound for test_re.test_search_anchor_at_beginning

This commit is contained in:
Jeong YunWon
2024-09-10 10:58:40 +09:00
committed by Jeong, YunWon
parent 8bc5944178
commit 3bbf6b9d53

2
Lib/test/test_re.py vendored
View File

@@ -2246,7 +2246,7 @@ class ReTests(unittest.TestCase):
t = time.perf_counter() - start
# Without optimization it takes 1 second on my computer.
# With optimization -- 0.0003 seconds.
self.assertLess(t, 0.1)
self.assertLess(t, 0.2)
# TODO: RUSTPYTHON
@unittest.expectedFailure