Skip to content

Commit 8a562d5

Browse files
fix(clients): Increased timeout delta for Python and Swift tests (generated)
algolia/api-clients-automation#5893 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Eric Zaharia <[email protected]>
1 parent 66e5eeb commit 8a562d5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

algoliasearch/tests/test_timeout_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def test_sync_retry_count_stateful():
4747

4848
assert 1.5 < times[0] < 2.5, f"Request 1 should be ~2s, got {times[0]:.2f}s"
4949
assert 3.5 < times[1] < 4.5, f"Request 2 should be ~4s, got {times[1]:.2f}s"
50-
assert 5.5 < times[2] < 7.0, f"Request 3 should be ~6s, got {times[2]:.2f}s"
50+
assert 5.5 < times[2] < 7.5, f"Request 3 should be ~6s, got {times[2]:.2f}s"
5151

5252

5353
def test_sync_retry_count_resets():
@@ -127,7 +127,7 @@ async def test_async_retry_count_stateful():
127127

128128
assert 1.5 < times[0] < 2.5, f"Request 1 should be ~2s, got {times[0]:.2f}s"
129129
assert 3.5 < times[1] < 4.5, f"Request 2 should be ~4s, got {times[1]:.2f}s"
130-
assert 5.5 < times[2] < 7.0, f"Request 3 should be ~6s, got {times[2]:.2f}s"
130+
assert 5.5 < times[2] < 7.5, f"Request 3 should be ~6s, got {times[2]:.2f}s"
131131

132132

133133
async def test_async_retry_count_resets():

0 commit comments

Comments
 (0)