Skip to content

Commit 378235a

Browse files
authored
Update test_responses_stream.py
1 parent fe0d756 commit 378235a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/partners/openai/tests/unit_tests/chat_models/test_responses_stream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,5 +681,5 @@ def mock_create(*args: Any, **kwargs: Any) -> MockSyncContextManager:
681681
if "content" in dumped and isinstance(dumped["content"], list):
682682
for content in dumped["content"]:
683683
if "type" in content and content["type"] == "output_text":
684-
content["type"] == "input_text"
684+
content["type"] = "input_text"
685685
assert dumped == payload["input"][idx]

0 commit comments

Comments
 (0)