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:
yryzhan 2026-05-20 18:57:21 +02:00
parent a9116b6875
commit 9d32ed6b36

View file

@ -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