Skip to content

Commit c200a3a

Browse files
Small refactor + documentation
1 parent ef31cb5 commit c200a3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/functional/event_handler/required_dependencies/test_bedrock_agent_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@ def test_bedrock_agent_function_with_invalid_parameters():
266266
app = BedrockAgentFunctionResolver()
267267

268268
@app.tool()
269-
def strict_function(requiredParam):
270-
return f"Got {requiredParam}"
269+
def strict_function(required_param):
270+
return f"Got {required_param}"
271271

272272
# WHEN calling with parameters that don't match the function signature
273273
raw_event = load_event("bedrockAgentFunctionEvent.json")

0 commit comments

Comments
 (0)