Skip to content

Commit ffd477b

Browse files
author
Sergey Semenov
committed
Merge remote-tracking branch 'origin/MAGETWO-38445' into BUGS
2 parents 457b1eb + 9c6d21d commit ffd477b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dev/tests/functional/tests/app/Magento/Backend/Test/Block/Widget/Grid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ abstract class Grid extends Block
144144
*
145145
* @var string
146146
*/
147-
protected $rowTemplate = 'td[contains(text(),normalize-space("%s"))]';
147+
protected $rowTemplate = 'td[contains(.,normalize-space("%s"))]';
148148

149149
/**
150150
* Secondary part of row locator template for getRow() method with strict option

dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Product/Composite/Configure.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Configure extends \Magento\Catalog\Test\Block\Adminhtml\Product\Composite\
1919
*
2020
* @var string
2121
*/
22-
protected $option = '//div[@class="composite-bundle"]//label[.="%option_name%"]//following-sibling::*//%selector%';
22+
protected $option = '//fieldset[contains(@class,"composite-bundle")]//label[.="%option_name%"]//following-sibling::*//%selector%';
2323

2424
/**
2525
* Fill options for the product

dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductInCustomerWishlistOnBackendGrid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ protected function prepareFilter(FixtureInterface $product)
2626
{
2727
$options = $this->prepareOptions($product);
2828

29-
return ['product_name' => $product->getName(), 'qty_from' => 1, 'qty_to' => 1, 'options' => $options];
29+
return ['product_name' => $product->getName(), 'options' => $options];
3030
}
3131

3232
/**

0 commit comments

Comments
 (0)