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 4807ebb commit b88d88eCopy full SHA for b88d88e
app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoFactoryTest.php
@@ -56,7 +56,9 @@ public function testCanRefundItem()
56
);
57
$orderChildItemTwo->expects($this->any())->method('getQtyToRefund')->willReturn(1);
58
$orderChildItemTwo->expects($this->any())->method('getId')->willReturn(3);
59
- $orderItem->expects($this->any())->method('getChildrenItems')->willReturn([$orderChildItemOne, $orderChildItemTwo]);
+ $orderItem->expects($this->any())
60
+ ->method('getChildrenItems')
61
+ ->willReturn([$orderChildItemOne, $orderChildItemTwo]);
62
$testMethod = new \ReflectionMethod(
63
\Magento\Sales\Model\Order\CreditmemoFactory::class,
64
'canRefundItem'
0 commit comments