mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-24 00:52:24 +00:00
fix(test): add AsyncMock to top-level imports in test_s3_v2
CI failed with NameError because AsyncMock was not imported at module level — only inline in some test methods.
This commit is contained in:
parent
a9116b6875
commit
9d32ed6b36
1 changed files with 1 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import asyncio
|
||||
from datetime import datetime
|
||||
from unittest.mock import MagicMock, patch
|
||||
from unittest.mock import AsyncMock, MagicMock, patch
|
||||
|
||||
import pytest
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue