Skip to content

Commit 163c6b9

Browse files
committed
MAGETWO-96817: Integration of Allure reports to Integration Tests
1 parent 9b03f5c commit 163c6b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/SimpleWithOptionsTierPriceWithDimensionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use Magento\Catalog\Api\Data\ProductTierPriceInterfaceFactory;
1414
use Magento\Catalog\Model\ResourceModel\Product\CollectionFactory;
1515
use Magento\Catalog\Pricing\Price\TierPrice;
16-
use Magento\Customer\Model\Group;
16+
use Magento\Customer\Model\Group as CustomerGroup;
1717

1818
/**
1919
* @group indexer_dimension
@@ -56,7 +56,7 @@ public function testTierPrice()
5656

5757
$tierPrice = $this->objectManager->create(ProductTierPriceInterfaceFactory::class)
5858
->create();
59-
$tierPrice->setCustomerGroupId(Group::CUST_GROUP_ALL);
59+
$tierPrice->setCustomerGroupId(CustomerGroup::CUST_GROUP_ALL);
6060
$tierPrice->setQty(1.00);
6161
$tierPrice->setValue($tierPriceValue);
6262
$tierPriceManagement = $this->objectManager->create(ScopedProductTierPriceManagementInterface::class);

0 commit comments

Comments
 (0)