Skip to content

Commit 49128da

Browse files
committed
MQE-1421: Updating EndToEnd Tests
- Updating the action group so it uses the correct data type for an argument.
1 parent 8faa1f4 commit 49128da

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

app/code/Magento/Checkout/Test/Mftf/Test/EndToEndB2CGuestUserTest.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@
158158
<comment userInput="Check order summary in checkout" stepKey="commentCheckOrderSummaryInCheckout" after="guestCheckoutFillingShippingSection" />
159159
<actionGroup ref="CheckOrderSummaryInCheckoutActionGroup" stepKey="guestCheckoutCheckOrderSummary" after="commentCheckOrderSummaryInCheckout">
160160
<!-- @TODO: Change to scalar value after MQE-498 is implemented -->
161-
<argument name="subtotal" value="{{E2EB2CQuote.subtotal}}"/>
161+
<argument name="subtotal" value="E2EB2CQuote.subtotal"/>
162162
<!-- @TODO: Change to scalar value after MQE-498 is implemented -->
163-
<argument name="shippingTotal" value="{{E2EB2CQuote.shipping}}"/>
163+
<argument name="shippingTotal" value="E2EB2CQuote.shipping"/>
164164
<!-- @TODO: Change to scalar value after MQE-498 is implemented -->
165-
<argument name="shippingMethod" value="{{E2EB2CQuote.shippingMethod}}"/>
165+
<argument name="shippingMethod" value="E2EB2CQuote.shippingMethod"/>
166166
<!-- @TODO: Change to scalar value after MQE-498 is implemented -->
167-
<argument name="total" value="{{E2EB2CQuote.total}}"/>
167+
<argument name="total" value="E2EB2CQuote.total"/>
168168
</actionGroup>
169169

170170
<!-- Check ship to information in checkout -->

app/code/Magento/Checkout/Test/Mftf/Test/EndToEndB2CLoggedInUserTest.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@
158158
<comment userInput="Check order summary in checkout" stepKey="commentCheckOrderSummaryInCheckout" after="checkoutFillingShippingSection" />
159159
<actionGroup ref="CheckOrderSummaryInCheckoutActionGroup" stepKey="checkoutCheckOrderSummary" after="commentCheckOrderSummaryInCheckout">
160160
<!-- @TODO: Change to scalar value after MQE-498 is implemented -->
161-
<argument name="subtotal" value="{{E2EB2CQuote.subtotal}}"/>
161+
<argument name="subtotal" value="E2EB2CQuote.subtotal"/>
162162
<!-- @TODO: Change to scalar value after MQE-498 is implemented -->
163-
<argument name="shippingTotal" value="{{E2EB2CQuote.shipping}}"/>
163+
<argument name="shippingTotal" value="E2EB2CQuote.shipping"/>
164164
<!-- @TODO: Change to scalar value after MQE-498 is implemented -->
165-
<argument name="shippingMethod" value="{{E2EB2CQuote.shippingMethod}}"/>
165+
<argument name="shippingMethod" value="E2EB2CQuote.shippingMethod"/>
166166
<!-- @TODO: Change to scalar value after MQE-498 is implemented -->
167-
<argument name="total" value="{{E2EB2CQuote.total}}"/>
167+
<argument name="total" value="E2EB2CQuote.total"/>
168168
</actionGroup>
169169

170170
<!-- Check ship to information in checkout -->

app/code/Magento/SalesRule/Test/Mftf/ActionGroup/StorefrontSalesRuleActionGroup.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<actionGroup name="StorefrontCheckCouponAppliedActionGroup">
3434
<arguments>
3535
<argument name="rule"/>
36-
<argument name="discount" type="string"/>
36+
<argument name="discount"/>
3737
</arguments>
3838
<waitForElementVisible selector="{{CheckoutCartSummarySection.discountTotal}}" stepKey="waitForDiscountTotal"/>
3939
<see userInput="{{rule.store_labels[1][store_label]}}" selector="{{CheckoutCartSummarySection.discountLabel}}" stepKey="assertDiscountLabel"/>

0 commit comments

Comments
 (0)