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 2bc1ff2 commit fd4db3aCopy full SHA for fd4db3a
app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php
@@ -269,6 +269,9 @@ public function testGetOptions(): void
269
->method('escapeHtml')
270
->with('name')
271
->willReturn('name');
272
+ $this->catalogHelper->expects($this->any())
273
+ ->method('getTaxPrice')
274
+ ->willReturn(15);
275
$this->pricingHelper->expects($this->once())->method('currency')->with(15)
276
->willReturn('<span class="price">$15.00</span>');
277
$priceModel->expects($this->once())->method('getSelectionFinalTotalPrice')->willReturn(15);
0 commit comments