Skip to content

Commit 96d1e8a

Browse files
committed
fix typos in tests
1 parent e9f6d08 commit 96d1e8a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_agent_runner_streamed.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ async def test_streaming_events():
674674
total_expected_item_count = sum(expected_item_type_map.values())
675675

676676
assert event_counts["run_item_stream_event"] == total_expected_item_count, (
677-
f"Expectd {total_expected_item_count} events, got {event_counts['run_item_stream_event']}"
677+
f"Expected {total_expected_item_count} events, got {event_counts['run_item_stream_event']}"
678678
f"Expected events were: {expected_item_type_map}, got {event_counts}"
679679
)
680680

tests/test_global_hooks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ class Foo(TypedDict):
223223

224224

225225
@pytest.mark.asyncio
226-
async def test_structed_output_non_streamed_agent_hooks():
226+
async def test_structured_output_non_streamed_agent_hooks():
227227
hooks = RunHooksForTests()
228228
model = FakeModel()
229229
agent_1 = Agent(name="test_1", model=model)
@@ -296,7 +296,7 @@ async def test_structed_output_non_streamed_agent_hooks():
296296

297297

298298
@pytest.mark.asyncio
299-
async def test_structed_output_streamed_agent_hooks():
299+
async def test_structured_output_streamed_agent_hooks():
300300
hooks = RunHooksForTests()
301301
model = FakeModel()
302302
agent_1 = Agent(name="test_1", model=model)

0 commit comments

Comments
 (0)