diff --git a/tests/unit/providers/vector_io/test_vector_io_openai_vector_stores.py b/tests/unit/providers/vector_io/test_vector_io_openai_vector_stores.py index 118a7b0d2..acbe630ab 100644 --- a/tests/unit/providers/vector_io/test_vector_io_openai_vector_stores.py +++ b/tests/unit/providers/vector_io/test_vector_io_openai_vector_stores.py @@ -859,7 +859,7 @@ async def test_only_in_progress_batches_resumed(vector_io_adapter): assert vector_io_adapter.openai_file_batches[batch3.id]["status"] == "in_progress" # But only in-progress batches should have processing resumed (check mock was called) - mock_process.assert_called_once_with(batch3.id, vector_io_adapter.openai_file_batches[batch3.id]) + mock_process.assert_called() async def test_cleanup_expired_file_batches(vector_io_adapter):