Update import paths in tests for StorageBackendFileService

- Changed the import path for `upload_file_to_storage_backend` in test files to reflect the new module structure.
- Ensured consistency in mocking for storage backend service tests.
This commit is contained in:
harish876
2026-04-11 00:07:52 +00:00
parent 68bc6de214
commit f523ccb2fe
@@ -322,7 +322,7 @@ def test_target_storage_invokes_storage_backend(
)
)
mocker.patch(
"litellm.proxy.openai_files_endpoints.files_endpoints.StorageBackendFileService.upload_file_to_storage_backend",
"litellm.proxy.openai_files_endpoints.storage_backend_service.StorageBackendFileService.upload_file_to_storage_backend",
new=async_mock,
)
@@ -381,7 +381,7 @@ def test_target_storage_with_target_models(
)
)
mocker.patch(
"litellm.proxy.openai_files_endpoints.files_endpoints.StorageBackendFileService.upload_file_to_storage_backend",
"litellm.proxy.openai_files_endpoints.storage_backend_service.StorageBackendFileService.upload_file_to_storage_backend",
new=async_mock,
)