From c65571136f2512e3546bd47409111dc2940563eb Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Thu, 8 May 2025 10:52:16 -0400 Subject: [PATCH] x --- .../anthropic/tests/integration_tests/test_chat_models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/partners/anthropic/tests/integration_tests/test_chat_models.py b/libs/partners/anthropic/tests/integration_tests/test_chat_models.py index 73f3c0d02b1..af677df668e 100644 --- a/libs/partners/anthropic/tests/integration_tests/test_chat_models.py +++ b/libs/partners/anthropic/tests/integration_tests/test_chat_models.py @@ -129,7 +129,6 @@ async def test_astream() -> None: async def test_stream_usage() -> None: - """Test usage metadata can be excluded.""" model = ChatAnthropic(model_name=MODEL_NAME, stream_usage=False) # type: ignore[call-arg] async for token in model.astream("hi"): assert isinstance(token, AIMessageChunk)