Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cc8009c

Browse files
stainless-app[bot]stainless-bot
authored andcommittedNov 6, 2024
chore(tests): adjust retry timeout values (#1851)
1 parent 22432e2 commit cc8009c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/test_client.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ class Model(BaseModel):
698698
[3, "", 0.5],
699699
[2, "", 0.5 * 2.0],
700700
[1, "", 0.5 * 4.0],
701-
[-1100, "", 7.8], # test large number potentially overflowing
701+
[-1100, "", 8], # test large number potentially overflowing
702702
],
703703
)
704704
@mock.patch("time.time", mock.MagicMock(return_value=1696004797))
@@ -1564,7 +1564,7 @@ class Model(BaseModel):
15641564
[3, "", 0.5],
15651565
[2, "", 0.5 * 2.0],
15661566
[1, "", 0.5 * 4.0],
1567-
[-1100, "", 7.8], # test large number potentially overflowing
1567+
[-1100, "", 8], # test large number potentially overflowing
15681568
],
15691569
)
15701570
@mock.patch("time.time", mock.MagicMock(return_value=1696004797))

0 commit comments

Comments
 (0)
Please sign in to comment.