This repository was archived by the owner on Apr 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +3
-4
lines changed
Expand file tree Collapse file tree 4 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ class MyOpportunityProperties(OpportunityProperties):
9696
9797
9898class MyOrderParameters (OrderParameters ):
99- delivery_mechanism : str | None = None
99+ s3_path : str | None = None
100100
101101
102102order_db = MockOrderDB ()
Original file line number Diff line number Diff line change 1111
1212# Copied and modified from https://github.com/stac-utils/stac-pydantic/blob/main/stac_pydantic/item.py#L11
1313class OpportunityProperties (BaseModel ):
14- product_id : str
1514 datetime : DatetimeInterval
1615 model_config = ConfigDict (extra = "allow" )
1716
Original file line number Diff line number Diff line change 2626
2727
2828class TestSpotlightOrderParameters (OrderParameters ):
29- delivery_mechanism : str | None = None
29+ s3_path : str | None = None
3030
3131
3232@pytest .fixture (scope = "session" )
Original file line number Diff line number Diff line change @@ -63,4 +63,4 @@ def test_product_order_parameters_response(
6363
6464 json_schema = res .json ()
6565 assert "properties" in json_schema
66- assert "delivery_mechanism " in json_schema ["properties" ]
66+ assert "s3_path " in json_schema ["properties" ]
You can’t perform that action at this time.
0 commit comments