Skip to content

Commit

Permalink
Checking in failing test for reference
Browse files Browse the repository at this point in the history
  • Loading branch information
harikrishnan83 committed Aug 18, 2024
1 parent d7ba447 commit 58d3800
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/resources/domain_service/stub_products_200.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"http-request": {
"method": "GET",
"path": "/products?type={{@productTypeBasedLookup}}"
"path": "/products?type=(PRODUCT_TYPE:ProductType)"
},
"http-response": {
"status": 200,
"body": [
{
"id": "{{@productTypeBasedLookup.productId}}",
"name": "{{@productTypeBasedLookup}}",
"id": "$(data.type[PRODUCT_TYPE].productId)",
"name": "$(data.type[PRODUCT_TYPE].name)",
"inventory": "(number)",
"type": "{{REQUEST.QUERY-PARAMS.type}}"
"type": "$(PRODUCT_TYPE)"
}
],
"status-text": "OK"
},
"data": {
"@productTypeBasedLookup": {
"type": {
"gadget": {
"name": "iPhone",
"productId": 10
Expand Down

0 comments on commit 58d3800

Please sign in to comment.