Skip to content

Commit 413a137

Browse files
committed
streaming tests
1 parent 07676b5 commit 413a137

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

tests/test_tracing_errors_streamed.py

+12-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,14 @@ async def test_multiple_handoff_doesnt_error():
262262
},
263263
},
264264
{"type": "generation"},
265-
{"type": "handoff", "data": {"from_agent": "test", "to_agent": "test"}},
265+
{
266+
"type": "handoff",
267+
"data": {"from_agent": "test", "to_agent": "test"},
268+
"error": {
269+
"data": {"requested_agents": ["test", "test"]},
270+
"message": "Multiple handoffs requested",
271+
},
272+
},
266273
],
267274
},
268275
{
@@ -396,6 +403,10 @@ async def test_handoffs_lead_to_correct_agent_spans():
396403
{"type": "generation"},
397404
{
398405
"type": "handoff",
406+
"error": {
407+
"message": "Multiple handoffs requested",
408+
"data": {"requested_agents": ["test_agent_1", "test_agent_2"]},
409+
},
399410
"data": {"from_agent": "test_agent_3", "to_agent": "test_agent_1"},
400411
},
401412
],

0 commit comments

Comments
 (0)