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 37be5d2 commit c801458Copy full SHA for c801458
app/code/Magento/Tax/Test/Unit/Block/Item/Price/RendererTest.php
@@ -359,11 +359,11 @@ public function testGetItemDisplayPriceExclTaxQuoteItem()
359
/** @var \Magento\Quote\Model\Quote\Item|MockObject $quoteItemMock */
360
$quoteItemMock = $this->getMockBuilder(\Magento\Quote\Model\Quote\Item::class)
361
->disableOriginalConstructor()
362
- ->onlyMethods(['getCalculationPrice', '__wakeup'])
+ ->onlyMethods(['getPrice', '__wakeup'])
363
->getMock();
364
365
$quoteItemMock->expects($this->once())
366
- ->method('getCalculationPrice')
+ ->method('getPrice')
367
->willReturn($price);
368
369
$this->renderer->setItem($quoteItemMock);
0 commit comments