fix typos in tests

This commit is contained in:
Raduan77 2025-03-20 11:24:15 +01:00
parent e9f6d08260
commit 96d1e8af8e
2 changed files with 3 additions and 3 deletions

View file

@ -674,7 +674,7 @@ async def test_streaming_events():
total_expected_item_count = sum(expected_item_type_map.values())
assert event_counts["run_item_stream_event"] == total_expected_item_count, (
f"Expectd {total_expected_item_count} events, got {event_counts['run_item_stream_event']}"
f"Expected {total_expected_item_count} events, got {event_counts['run_item_stream_event']}"
f"Expected events were: {expected_item_type_map}, got {event_counts}"
)

View file

@ -223,7 +223,7 @@ class Foo(TypedDict):
@pytest.mark.asyncio
async def test_structed_output_non_streamed_agent_hooks():
async def test_structured_output_non_streamed_agent_hooks():
hooks = RunHooksForTests()
model = FakeModel()
agent_1 = Agent(name="test_1", model=model)
@ -296,7 +296,7 @@ async def test_structed_output_non_streamed_agent_hooks():
@pytest.mark.asyncio
async def test_structed_output_streamed_agent_hooks():
async def test_structured_output_streamed_agent_hooks():
hooks = RunHooksForTests()
model = FakeModel()
agent_1 = Agent(name="test_1", model=model)