From e4e91098a8354fb5b6a16597e260ce4f4daa958f Mon Sep 17 00:00:00 2001 From: Roman Liukshyn <rliukshyn@magento.com> Date: Tue, 27 Dec 2016 19:29:33 +0200 Subject: [PATCH] MTA-3891: Add variation for Close a Sales Order Paid with PayPal Payments Pro --- .../Block/Adminhtml/Order/AbstractItems.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractItems.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractItems.php index d7a89b68c55..38ad9139d4f 100644 --- a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractItems.php +++ b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractItems.php @@ -19,63 +19,63 @@ class AbstractItems extends Block * * @var string */ - private $rowItem = 'tbody'; + protected $rowItem = 'tbody'; /** * Locator for product sku column. * * @var string */ - private $sku = '.col-product .product-sku-block'; + protected $sku = '.col-product .product-sku-block'; /** * Locator for product title column. * * @var string */ - private $title = '.col-product .product-title'; + protected $title = '.col-product .product-title'; /** * Locator for "Price" column. * * @var string */ - private $price = '.col-price .price'; + protected $price = '.col-price .price'; /** * Locator for "Qty" column. * * @var string */ - private $qty = '.col-qty'; + protected $qty = '.col-qty'; /** * Locator for "Subtotal" column. * * @var string */ - private $subtotal = '.col-subtotal .price'; + protected $subtotal = '.col-subtotal .price'; /** * Locator for "Tax Amount" column. * * @var string */ - private $taxAmount = '.col-tax .price'; + protected $taxAmount = '.col-tax .price'; /** * Locator for "Discount Amount" column. * * @var string */ - private $discountAmount = '.col-discount .price'; + protected $discountAmount = '.col-discount .price'; /** * Locator for "Row total" column. * * @var string */ - private $rowTotal = '.col-total .price'; + protected $rowTotal = '.col-total .price'; /** * Get items data. -- GitLab