We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4b7937 commit 22692c7Copy full SHA for 22692c7
app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowsTest.php
@@ -184,9 +184,12 @@ public function testBatchProcessing()
184
$this->catalogProductType->expects($this->any())
185
->method('getTypesByPriority')
186
->willReturn([]);
187
- $adapter->expects($this->any())
+ $adapter->expects($this->once())
188
+ ->method('getIndexList')
189
+ ->willReturn(['entity_id'=>['COLUMNS_LIST'=>['test']]]);
190
191
->method('getPrimaryKeyName')
- ->willReturn(['COLUMNS_LIST'=>['entity_id']]);
192
+ ->willReturn('entity_id');
193
$this->actionRows->execute($ids);
194
}
195
0 commit comments