Skip to content

Commit fd8f26a

Browse files
rename
1 parent bcf97fa commit fd8f26a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/openai_agents/basic/test_hello_world_workflow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from openai_agents.basic.workflows.hello_world_workflow import HelloWorldAgent
1313

1414

15-
def haiku_test_model():
15+
def hello_world_test_model():
1616
return TestModel.returning_responses(
1717
[ResponseBuilders.output_message("This is a haiku (not really)")]
1818
)
@@ -21,7 +21,7 @@ def haiku_test_model():
2121
async def test_execute_workflow(client: Client):
2222
task_queue_name = str(uuid.uuid4())
2323

24-
async with AgentEnvironment(model=haiku_test_model()) as agent_env:
24+
async with AgentEnvironment(model=hello_world_test_model()) as agent_env:
2525
client = agent_env.applied_on_client(client)
2626
async with Worker(
2727
client,

0 commit comments

Comments
 (0)