File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/agentstack-server/tests/e2e/examples/agent-integration/multi-turn Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1010pytestmark = pytest .mark .e2e
1111
1212
13- @pytest .mark .usefixtures ("clean_up" )
13+ @pytest .mark .usefixtures ("clean_up" , "setup_platform_client" )
1414async def test_basic_history_example (subtests , get_final_task_from_stream , a2a_client_factory ):
1515 example_path = "agent-integration/multi-turn/basic-history"
1616
1717 async with run_example (example_path , a2a_client_factory ) as running_example :
1818 with subtests .test ("agent reports 1 message in history" ):
1919 message = create_text_message_object (content = "My 1st message" )
20- message .context_id = running_example .context .id
20+ message .context_id = running_example .caaontext .id
2121 task = await get_final_task_from_stream (running_example .client .send_message (message ))
2222 # Verify response
2323 assert task .status .state == TaskState .completed , f"Fail: { task .status .message .parts [0 ].root .text } "
You can’t perform that action at this time.
0 commit comments