mirror of
https://github.com/EvolutionAPI/adk-python.git
synced 2025-12-18 19:32:21 -06:00
chore: Fix reqeust -> request typo
Copybara import of the project: -- 6beac4451fef1774365e75ab67779253c5ac79be by Calvin Giles <calvin.giles@trademe.co.nz>: chore: Fix reqeust -> request typo #non-breaking COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/883 from calvingiles:fix-reqeust-typo cfe592e6ad4ebc79bd2b3ebcd0370f868b57ff10 PiperOrigin-RevId: 765354040
This commit is contained in:
committed by
Copybara-Service
parent
ba5b80d5d7
commit
4075290a1d
@@ -247,8 +247,8 @@ def test_function_call_id():
|
||||
agent = Agent(name='root_agent', model=mock_model, tools=[increase_by_one])
|
||||
runner = testing_utils.InMemoryRunner(agent)
|
||||
events = runner.run('test')
|
||||
for reqeust in mock_model.requests:
|
||||
for content in reqeust.contents:
|
||||
for request in mock_model.requests:
|
||||
for content in request.contents:
|
||||
for part in content.parts:
|
||||
if part.function_call:
|
||||
assert part.function_call.id is None
|
||||
|
||||
Reference in New Issue
Block a user