mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
fixing tests
This commit is contained in:
parent
4ee00cfda5
commit
7307992cea
1 changed files with 2 additions and 2 deletions
|
|
@ -584,7 +584,7 @@ async def test_get_fuzzy_user_object():
|
|||
)
|
||||
assert result == test_user
|
||||
mock_prisma.db.litellm_usertable.find_first.assert_called_with(
|
||||
where={"user_email": "test@example.com"},
|
||||
where={"user_email": {"equals": "test@example.com", "mode": "insensitive"}},
|
||||
include={"organization_memberships": True},
|
||||
)
|
||||
|
||||
|
|
@ -612,7 +612,7 @@ async def test_get_fuzzy_user_object():
|
|||
)
|
||||
assert result == test_user
|
||||
mock_prisma.db.litellm_usertable.find_first.assert_called_with(
|
||||
where={"user_email": "test@example.com"},
|
||||
where={"user_email": {"equals": "test@example.com", "mode": "insensitive"}},
|
||||
include={"organization_memberships": True},
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue