Skip to content

Commit fd4db3a

Browse files
committed
ACP2E-1456: fix unit test errors
1 parent 2bc1ff2 commit fd4db3a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,9 @@ public function testGetOptions(): void
269269
->method('escapeHtml')
270270
->with('name')
271271
->willReturn('name');
272+
$this->catalogHelper->expects($this->any())
273+
->method('getTaxPrice')
274+
->willReturn(15);
272275
$this->pricingHelper->expects($this->once())->method('currency')->with(15)
273276
->willReturn('<span class="price">$15.00</span>');
274277
$priceModel->expects($this->once())->method('getSelectionFinalTotalPrice')->willReturn(15);

0 commit comments

Comments
 (0)