Skip to content

Commit 51e1086

Browse files
committed
ACP2E-1388, fixed static
1 parent 5cab275 commit 51e1086

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

app/code/Magento/Bundle/Test/Unit/Model/Plugin/ProductPriceIndexModifierTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,11 @@ public function testAroundModifyPriceFilteredEntities()
7272
->with(['selection' => 'catalog_product_bundle_selection'], 'selection_id');
7373
$select->expects($this->exactly(2))
7474
->method('joinInner')
75-
->with(['price' => $priceTableName],
75+
->with(
76+
['price' => $priceTableName],
7677
implode(' AND ', ['price.entity_id = selection.product_id']),
77-
null);
78+
null
79+
);
7880
$select->expects($this->exactly(4))
7981
->method('where')
8082
->withConsecutive(

0 commit comments

Comments
 (0)