Skip to content

Commit

Permalink
Align tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nuzil committed Sep 9, 2020
1 parent 4da31ea commit a0e65ed
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
use Magento\TestFramework\Helper\Bootstrap;
use PHPUnit\Framework\TestCase;
use Magento\Catalog\Helper\Product;
use Magento\Catalog\Model\Indexer\Product\Flat\Processor;
use Magento\Catalog\Model\Indexer\Product\Flat\Processor as FlatProcessor;
use Magento\Catalog\Model\Indexer\Product\Price\Processor as PriceProcessor;
use Magento\Framework\Bulk\OperationManagementInterface;
use Magento\Catalog\Model\Product\Action;
use Psr\Log\LoggerInterface;
Expand Down Expand Up @@ -81,10 +82,10 @@ protected function setUp(): void
$this->bulkStatus = $this->objectManager->get(BulkStatus::class);
$catalogProductMock = $this->createMock(Product::class);
$productFlatIndexerProcessorMock = $this->createMock(
Processor::class
FlatProcessor::class
);
$productPriceIndexerProcessorMock = $this->createMock(
Processor::class
PriceProcessor::class
);
$operationManagementMock = $this->createMock(
OperationManagementInterface::class
Expand Down

0 comments on commit a0e65ed

Please sign in to comment.