clean and fix tests

This commit is contained in:
Swapna Lekkala 2025-10-10 15:18:56 -07:00
parent ad4362e48d
commit 171fb7101d
3 changed files with 3 additions and 44 deletions

View file

@ -38,6 +38,7 @@ def responses_impl_with_conversations(
mock_responses_store,
mock_vector_io_api,
mock_conversations_api,
mock_safety_api,
):
"""Create OpenAIResponsesImpl instance with conversations API."""
return OpenAIResponsesImpl(
@ -47,6 +48,7 @@ def responses_impl_with_conversations(
responses_store=mock_responses_store,
vector_io_api=mock_vector_io_api,
conversations_api=mock_conversations_api,
safety_api=mock_safety_api,
)