Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rest/python/server/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
line_item_create_request as line_item_create_req,
)
from ucp_sdk.models.schemas.shopping.types import (
shipping_destination as shipping_destination_req,
shipping_destination_create_request as shipping_destination_req,
)

FLAGS = flags.FLAGS
Expand Down Expand Up @@ -250,7 +250,7 @@ def _create_checkout_payload(
payment = payment_create_req.PaymentCreateRequest(instruments=[])

# Hierarchical Fulfillment Construction
destination = shipping_destination_req.ShippingDestination(
destination = shipping_destination_req.ShippingDestinationCreateRequest(
id="dest_1", address_country="US"
)
group = fulfillment_group_create_req.FulfillmentGroupCreateRequest(
Expand Down
Loading