diff --git a/tests/llm_translation/test_anthropic_completion.py b/tests/llm_translation/test_anthropic_completion.py index f4bd7531b0b..307c429fc62 100644 --- a/tests/llm_translation/test_anthropic_completion.py +++ b/tests/llm_translation/test_anthropic_completion.py @@ -256,7 +256,6 @@ def test_anthropic_tool_streaming(): for chunk in anthropic_chunk_list: parsed_chunk = response_iter.chunk_parser(chunk) if tool_use := parsed_chunk.get("tool_use"): - # We only increment when a new block starts if tool_use.get("id") is not None: correct_tool_index += 1 @@ -967,8 +966,6 @@ def test_anthropic_citations_api_streaming(): if "citation" in provider_specific_fields: has_citations = True - assert "chunk_type" in provider_specific_fields - assert has_citations