forked from phoenix/litellm-mirror
test(test_ratelimit.py): fix test to send below rpm
This commit is contained in:
parent
47017f5bc4
commit
e2eddac406
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ class ExpectNoException(Exception):
|
|||
@pytest.mark.parametrize(
|
||||
"num_try_send, num_allowed_send",
|
||||
[
|
||||
(2, 2), # sending as many as allowed, ExpectNoException
|
||||
(2, 3), # sending as many as allowed, ExpectNoException
|
||||
# (10, 10), # sending as many as allowed, ExpectNoException
|
||||
(3, 2), # Sending more than allowed, ValueError
|
||||
# (10, 9), # Sending more than allowed, ValueError
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue