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 28066af commit 5c86bf3Copy full SHA for 5c86bf3
app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/EraserTest.php
@@ -54,6 +54,7 @@ public function testRemoveDeletedProducts()
54
$productsToDeleteIds = [1, 2];
55
$select = $this->createMock(\Magento\Framework\DB\Select::class);
56
$select->expects($this->once())->method('from')->with('catalog_product_entity')->will($this->returnSelf());
57
+ $select->expects($this->once())->method('columns')->with('entity_id')->will($this->returnSelf());
58
$select->expects($this->once())->method('where')->with('entity_id IN(?)', $productsToDeleteIds)
59
->will($this->returnSelf());
60
$products = [['entity_id' => 2]];
0 commit comments