Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@
<waitForPageLoad stepKey="waitForGridLoad"/>
</actionGroup>

<!--Filter and select the the product -->
<!--Filter and select the product -->
<actionGroup name="filterAndSelectProduct">
<annotations>
<description>Goes to the Admin Products grid. Filters the Product grid by the provided Product SKU.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
<!-- Check product in checkout cart items -->
<actionGroup name="CheckProductInCheckoutCartItemsActionGroup">
<annotations>
<description>Validates the the provided Product appears in the Storefront Checkout 'Order Summary' section.</description>
<description>Validates the provided Product appears in the Storefront Checkout 'Order Summary' section.</description>
</annotations>
<arguments>
<argument name="productVar"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
<actionGroup name="SetGroupForValidVATIdIntraUnionActionGroup">
<annotations>
<description>Goes to the 'Configuration' page for 'Customer Configuration'. Sets the 'Group For Valid VAT ID Intra Union' option. Clicks on the Save button. Validates the the Save message is present.</description>
<description>Goes to the 'Configuration' page for 'Customer Configuration'. Sets the 'Group For Valid VAT ID Intra Union' option. Clicks on the Save button. Validates the Save message is present.</description>
</annotations>
<arguments>
<argument name="value" type="string"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
},

/**
* Wraps the node in in another node.
* Wraps the node in another node.
*
* @example
* node.wrap(wrapperNode);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class InvalidRequestException extends RuntimeException
/**
* @param ResponseInterface|ResultInterface|NotFoundException $replaceResult
* Use this result instead of calling an action instance,
* if NotFoundException is given the the default 404 mechanism will be triggered.
* if NotFoundException is given the default 404 mechanism will be triggered.
* @param Phrase[]|null $messages Messages to show to client
* as error messages.
*/
Expand All @@ -45,6 +45,8 @@ public function __construct($replaceResult, ?array $messages = null)
}

/**
* Return replaced result
*
* @return ResponseInterface|ResultInterface|NotFoundException
*/
public function getReplaceResult()
Expand All @@ -53,6 +55,8 @@ public function getReplaceResult()
}

/**
* Return messages
*
* @return Phrase[]|null
*/
public function getMessages(): ?array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function __construct(
}

/**
* Check the the environment config to determine if introspection should be disabled.
* Check the environment config to determine if introspection should be disabled.
*
* @return bool
*/
Expand Down