@@ -20,7 +20,7 @@ Feature: I want to update a cart
2020 And the variantId is "1" as "int"
2121 And the quantity is "3" as "int"
2222 When i want to update a "Cart"
23- Then the path should be "/ carts/id"
23+ Then the path should be "carts/id"
2424 And the method should be "POST"
2525 And the request should be
2626 """
@@ -42,7 +42,7 @@ Feature: I want to update a cart
4242 And the lineItemId is "lineItemId-1"
4343 And set the quantity to "3" as "int"
4444 When i want to update a "Cart"
45- Then the path should be "/ carts/id"
45+ Then the path should be "carts/id"
4646 And the method should be "POST"
4747 And the request should be
4848 """
@@ -63,7 +63,7 @@ Feature: I want to update a cart
6363 And the lineItemId is "lineItemId-1"
6464 And the quantity is "3" as "int"
6565 When i want to update a "Cart"
66- Then the path should be "/ carts/id"
66+ Then the path should be "carts/id"
6767 And the method should be "POST"
6868 And the request should be
6969 """
@@ -87,7 +87,7 @@ Feature: I want to update a cart
8787 And the slug is "my-custom-line-item"
8888 And the "taxCategory" is "taxCategory" object
8989 When i want to update a "Cart"
90- Then the path should be "/ carts/id"
90+ Then the path should be "carts/id"
9191 And the method should be "POST"
9292 And the request should be
9393 """
@@ -123,7 +123,7 @@ Feature: I want to update a cart
123123 Given i want to "removeCustomLineItem" of "cart"
124124 And the customLineItemId is "customLineItem-1"
125125 When i want to update a "Cart"
126- Then the path should be "/ carts/id"
126+ Then the path should be "carts/id"
127127 And the method should be "POST"
128128 And the request should be
129129 """
@@ -142,7 +142,7 @@ Feature: I want to update a cart
142142 Given i want to "setCustomerEmail" of "cart"
143143 And set the email to
"[email protected] " 144144 When i want to update a "Cart"
145- Then the path should be "/ carts/id"
145+ Then the path should be "carts/id"
146146 And the method should be "POST"
147147 And the request should be
148148 """
@@ -161,7 +161,7 @@ Feature: I want to update a cart
161161 Given i want to "setShippingAddress" of "cart"
162162 And set the "default" object to "address"
163163 When i want to update a "Cart"
164- Then the path should be "/ carts/id"
164+ Then the path should be "carts/id"
165165 And the method should be "POST"
166166 And the request should be
167167 """
@@ -184,7 +184,7 @@ Feature: I want to update a cart
184184 Given i want to "setBillingAddress" of "cart"
185185 And set the "default" object to "address"
186186 When i want to update a "Cart"
187- Then the path should be "/ carts/id"
187+ Then the path should be "carts/id"
188188 And the method should be "POST"
189189 And the request should be
190190 """
@@ -207,7 +207,7 @@ Feature: I want to update a cart
207207 Given i want to "setCountry" of "cart"
208208 And set the country to "DE"
209209 When i want to update a "Cart"
210- Then the path should be "/ carts/id"
210+ Then the path should be "carts/id"
211211 And the method should be "POST"
212212 And the request should be
213213 """
@@ -228,7 +228,7 @@ Feature: I want to update a cart
228228 Given i want to "setCustomerId" of "cart"
229229 And set the "customerId" to "customer-1"
230230 When i want to update a "Cart"
231- Then the path should be "/ carts/id"
231+ Then the path should be "carts/id"
232232 And the method should be "POST"
233233 And the request should be
234234 """
@@ -247,7 +247,7 @@ Feature: I want to update a cart
247247 Given i want to "addDiscountCode" of "cart"
248248 And the "code" is "payless"
249249 When i want to update a "Cart"
250- Then the path should be "/ carts/id"
250+ Then the path should be "carts/id"
251251 And the method should be "POST"
252252 And the request should be
253253 """
@@ -265,7 +265,7 @@ Feature: I want to update a cart
265265 Scenario : Recalculate cart
266266 Given i want to "recalculate" of "cart"
267267 When i want to update a "Cart"
268- Then the path should be "/ carts/id"
268+ Then the path should be "carts/id"
269269 And the method should be "POST"
270270 And the request should be
271271 """
@@ -283,7 +283,7 @@ Feature: I want to update a cart
283283 Given i want to "setShippingMethod" of "cart"
284284 And set the "shippingMethod" reference "shippingMethod" to "myShippingMethod"
285285 When i want to update a "Cart"
286- Then the path should be "/ carts/id"
286+ Then the path should be "carts/id"
287287 And the method should be "POST"
288288 And the request should be
289289 """
@@ -305,7 +305,7 @@ Feature: I want to update a cart
305305 Given i want to "removeDiscountCode" of "cart"
306306 And the "discountCode" reference "discountCode" is "payless"
307307 When i want to update a "Cart"
308- Then the path should be "/ carts/id"
308+ Then the path should be "carts/id"
309309 And the method should be "POST"
310310 And the request should be
311311 """
0 commit comments