Skip to content

Commit 3bbf6b9

Browse files
committed
less strict time bound for test_re.test_search_anchor_at_beginning
1 parent 8bc5944 commit 3bbf6b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_re.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2246,7 +2246,7 @@ def test_search_anchor_at_beginning(self):
22462246
t = time.perf_counter() - start
22472247
# Without optimization it takes 1 second on my computer.
22482248
# With optimization -- 0.0003 seconds.
2249-
self.assertLess(t, 0.1)
2249+
self.assertLess(t, 0.2)
22502250

22512251
# TODO: RUSTPYTHON
22522252
@unittest.expectedFailure

0 commit comments

Comments
 (0)