We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ed09a2 commit 79cfca6Copy full SHA for 79cfca6
tests/test_property_v2.py
@@ -53,12 +53,12 @@ def test_build_search_criteria(property_v2_service: PropertyV2Service) -> None:
53
54
# Test with location
55
location = {"latitude": 37.7749, "longitude": -122.4194, "radius": 5.0}
56
- criteria = property_v2_service._build_search_criteria(location=location)
+ criteria = property_v2_service._build_search_criteria(geo_coordinates=location)
57
assert criteria == location
58
59
# Test with all parameters
60
criteria = property_v2_service._build_search_criteria(
61
- parcl_ids=[123], parcl_property_ids=[456], location=location
+ parcl_ids=[123], parcl_property_ids=[456], geo_coordinates=location
62
)
63
assert criteria == {
64
"parcl_ids": [123],
0 commit comments