fixing tests

This commit is contained in:
yuneng-jiang
2026-01-26 20:17:53 -08:00
parent 4ee00cfda5
commit 7307992cea
+2 -2
View File
@@ -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},
)