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 Original file line number Diff line number Diff line change 17
17
use Magento \TestFramework \Helper \Bootstrap ;
18
18
use PHPUnit \Framework \TestCase ;
19
19
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 ;
21
22
use Magento \Framework \Bulk \OperationManagementInterface ;
22
23
use Magento \Catalog \Model \Product \Action ;
23
24
use Psr \Log \LoggerInterface ;
@@ -81,10 +82,10 @@ protected function setUp(): void
81
82
$ this ->bulkStatus = $ this ->objectManager ->get (BulkStatus::class);
82
83
$ catalogProductMock = $ this ->createMock (Product::class);
83
84
$ productFlatIndexerProcessorMock = $ this ->createMock (
84
- Processor ::class
85
+ FlatProcessor ::class
85
86
);
86
87
$ productPriceIndexerProcessorMock = $ this ->createMock (
87
- Processor ::class
88
+ PriceProcessor ::class
88
89
);
89
90
$ operationManagementMock = $ this ->createMock (
90
91
OperationManagementInterface::class
You can’t perform that action at this time.
0 commit comments