Skip to content

Commit a0e65ed

Browse files
committed
Align tests
1 parent 4da31ea commit a0e65ed

File tree

1 file changed

+4
-3
lines changed
  • dev/tests/integration/testsuite/Magento/Catalog/Model/Attribute/Backend

1 file changed

+4
-3
lines changed

dev/tests/integration/testsuite/Magento/Catalog/Model/Attribute/Backend/ConsumerTest.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
use Magento\TestFramework\Helper\Bootstrap;
1818
use PHPUnit\Framework\TestCase;
1919
use Magento\Catalog\Helper\Product;
20-
use Magento\Catalog\Model\Indexer\Product\Flat\Processor;
20+
use Magento\Catalog\Model\Indexer\Product\Flat\Processor as FlatProcessor;
21+
use Magento\Catalog\Model\Indexer\Product\Price\Processor as PriceProcessor;
2122
use Magento\Framework\Bulk\OperationManagementInterface;
2223
use Magento\Catalog\Model\Product\Action;
2324
use Psr\Log\LoggerInterface;
@@ -81,10 +82,10 @@ protected function setUp(): void
8182
$this->bulkStatus = $this->objectManager->get(BulkStatus::class);
8283
$catalogProductMock = $this->createMock(Product::class);
8384
$productFlatIndexerProcessorMock = $this->createMock(
84-
Processor::class
85+
FlatProcessor::class
8586
);
8687
$productPriceIndexerProcessorMock = $this->createMock(
87-
Processor::class
88+
PriceProcessor::class
8889
);
8990
$operationManagementMock = $this->createMock(
9091
OperationManagementInterface::class

0 commit comments

Comments
 (0)