Skip to content

Commit b7a0ea4

Browse files
committed
typo
1 parent 2fa4b8b commit b7a0ea4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/tests/tools/test_structured_code.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def test_structured_code_raw(patched_openai_client):
4747
for text in stream.text_deltas:
4848
print(text, end="", flush=True)
4949
print()
50-
print(f"tool_outputs: {event_handler.tool_outputs}")
50+
print(f"tool_output: {event_handler.tool_output}")
5151

5252
# Edit the program
5353
event_handler = AstraEventHandler(patched_openai_client)
@@ -64,8 +64,8 @@ def test_structured_code_raw(patched_openai_client):
6464
for text in stream.text_deltas:
6565
print(text, end="", flush=True)
6666
print()
67-
programs = event_handler.tool_outputs
68-
print(f"tool_outputs: {event_handler.tool_outputs}")
67+
programs = event_handler.tool_output
68+
print(f"tool_output: {event_handler.tool_output}")
6969

7070

7171
@pytest.mark.asyncio

0 commit comments

Comments
 (0)