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 960a94f commit 4e44a37Copy full SHA for 4e44a37
app/code/Magento/Catalog/Test/Unit/Pricing/Render/FinalPriceBoxTest.php
@@ -189,7 +189,11 @@ public function testRenderMsrpDisabled()
189
190
public function testNotSalableItem()
191
{
192
- $this->salableResolverMock->expects($this->once())->method('isSalable')->with($this->product)->willReturn(false);
+ $this->salableResolverMock
193
+ ->expects($this->once())
194
+ ->method('isSalable')
195
+ ->with($this->product)
196
+ ->willReturn(false);
197
$result = $this->object->toHtml();
198
199
$this->assertEmpty($result);
0 commit comments