mirror of
https://github.com/EvolutionAPI/adk-python.git
synced 2025-07-14 09:51:25 -06:00
fix: Update test_operation_parser.py
This commit is contained in:
parent
6f182821c4
commit
81aa11f070
@ -347,9 +347,8 @@ def test_get_json_schema(sample_operation):
|
|||||||
assert json_schema['type'] == 'object'
|
assert json_schema['type'] == 'object'
|
||||||
assert 'param1' in json_schema['properties']
|
assert 'param1' in json_schema['properties']
|
||||||
assert 'prop1' in json_schema['properties']
|
assert 'prop1' in json_schema['properties']
|
||||||
assert 'param1' in json_schema['required']
|
# By default nothing is required unless explicitly stated
|
||||||
assert 'prop1' in json_schema['required']
|
assert 'required' not in json_schema or json_schema['required'] == []
|
||||||
|
|
||||||
|
|
||||||
def test_get_signature_parameters(sample_operation):
|
def test_get_signature_parameters(sample_operation):
|
||||||
"""Test get_signature_parameters method."""
|
"""Test get_signature_parameters method."""
|
||||||
|
Loading…
Reference in New Issue
Block a user