forked from phoenix/litellm-mirror
test(test_llm_guard.py): fix test
This commit is contained in:
parent
62ea989d42
commit
ef4c85522c
1 changed files with 4 additions and 1 deletions
|
@ -111,7 +111,10 @@ def test_llm_guard_key_specific_mode():
|
||||||
api_key=_api_key,
|
api_key=_api_key,
|
||||||
)
|
)
|
||||||
|
|
||||||
should_proceed = llm_guard.should_proceed(user_api_key_dict=user_api_key_dict)
|
request_data = {}
|
||||||
|
should_proceed = llm_guard.should_proceed(
|
||||||
|
user_api_key_dict=user_api_key_dict, data=request_data
|
||||||
|
)
|
||||||
|
|
||||||
assert should_proceed == False
|
assert should_proceed == False
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue