Skip to content

Commit 3825109

Browse files
committed
Resolving build failure Issue
1 parent 730ab80 commit 3825109

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* @magentoAppArea frontend
1414
*/
15-
class FixedBundleWithCatalogPriceRuleCalculator
15+
class FixedBundleWithCatalogPriceRuleCalculatorTest extends BundlePriceAbstract
1616
{
1717
/**
1818
* @param array $strategyModifiers

dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundleWithTierPriceCalculator.php renamed to dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundleWithTierPriceCalculatorTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@
1414
* @package Magento\Bundle\Model\Product
1515
* @magentoAppArea frontend
1616
*/
17-
class FixedBundleWithTierPriceCalculator
17+
class FixedBundleWithTierPriceCalculatorTest extends BundlePriceAbstract
1818
{
1919
/** @var ProductTierPriceInterfaceFactory */
2020
private $tierPriceFactory;
2121

2222
protected function setUp(): void
2323
{
24+
parent::setUp();
2425
$this->tierPriceFactory = $this->objectManager->create(ProductTierPriceInterfaceFactory::class);
2526
}
2627

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* @group indexer_dimension
2323
* Test price rendering according to is_product_list flag for Configurable product
2424
*/
25-
class RenderingBasedOnIsProductListFlagWithDimensionTest extends \PHPUnit\Framework\TestCase
25+
class RenderingBasedOnIsProductListFlagWithDimension
2626
{
2727
/**
2828
* @var ProductInterface

dev/tests/integration/testsuite/Magento/LayeredNavigation/Block/Navigation/Category/PriceFilter.php renamed to dev/tests/integration/testsuite/Magento/LayeredNavigation/Block/Navigation/Category/PriceFilterTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* @magentoAppIsolation enabled
2323
* @magentoDbIsolation disabled
2424
*/
25-
class PriceFilter
25+
class PriceFilterTest extends AbstractFiltersTest
2626
{
2727
/**
2828
* @var MutableScopeConfigInterface
@@ -34,6 +34,7 @@ class PriceFilter
3434
*/
3535
protected function setUp(): void
3636
{
37+
parent::setUp();
3738
$this->scopeConfig = $this->objectManager->get(MutableScopeConfigInterface::class);
3839
}
3940

dev/tests/integration/testsuite/Magento/LayeredNavigation/Block/Navigation/Search/PriceFilter.php renamed to dev/tests/integration/testsuite/Magento/LayeredNavigation/Block/Navigation/Search/PriceFilterTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
use Magento\Catalog\Model\Layer\Filter\AbstractFilter;
1111
use Magento\Catalog\Model\Layer\Resolver;
12-
use Magento\LayeredNavigation\Block\Navigation\Category\PriceFilter as CategoryPriceFilterTest;
12+
use Magento\LayeredNavigation\Block\Navigation\Category\PriceFilterTest as CategoryPriceFilterTest;
1313

1414
/**
1515
* Provides price filter tests with different price ranges calculation in navigation block on search page.
@@ -18,7 +18,7 @@
1818
* @magentoAppIsolation enabled
1919
* @magentoDbIsolation disabled
2020
*/
21-
class PriceFilter
21+
class PriceFilterTest extends CategoryPriceFilterTest
2222
{
2323
/**
2424
* @magentoDataFixture Magento/Catalog/_files/category_with_three_products.php

0 commit comments

Comments
 (0)