-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed data types for email test and improved test time
- Loading branch information
1 parent
bf1fd33
commit e54d87c
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,28 +18,28 @@ spec: | |
{ | ||
"email": "[email protected]", | ||
"order": { | ||
"orderId": "505", | ||
"shippingTrackingId": "dead-beef", | ||
"shippingCost": { | ||
"currencyCode": "USD", | ||
"order_id": "505", | ||
"shipping_tracking_id": "dead-beef", | ||
"shipping_cost": { | ||
"currency_code": "USD", | ||
"units": 17, | ||
"nanos": 980000000 | ||
}, | ||
"shippingAddress": { | ||
"streetAddress": "1600 Amphitheatre Parkway", | ||
"shipping_address": { | ||
"street_address_1": "1600 Amphitheatre Parkway", | ||
"city": "Mountain View", | ||
"state": "California", | ||
"country": "United States", | ||
"zipCode": "94043" | ||
"zip_code": "94043" | ||
}, | ||
"items": [ | ||
{ | ||
"item": { | ||
"productId": "1YMWWN1N4O", | ||
"product_id": "1YMWWN1N4O", | ||
"quantity": 5 | ||
}, | ||
"cost": { | ||
"currencyCode": "USD", | ||
"currency_code": "USD", | ||
"units": 100, | ||
"nanos": 0 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters