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 ad2f9b0 commit c852db6Copy full SHA for c852db6
app/code/Magento/Quote/Test/Unit/Model/QuoteManagementTest.php
@@ -518,7 +518,10 @@ public function testAssignCustomer()
518
$customerId = 455;
519
$storeId = 5;
520
521
- $this->getPropertyValue($this->model, 'quoteIdMaskFactory')->expects($this->once())->method('create')->willReturn($this->quoteIdMock);
+ $this->getPropertyValue($this->model, 'quoteIdMaskFactory')
522
+ ->expects($this->once())
523
+ ->method('create')
524
+ ->willReturn($this->quoteIdMock);
525
$this->quoteIdMock->expects($this->once())->method('load')->with($cartId, 'quote_id')->willReturnSelf();
526
$this->quoteIdMock->expects($this->once())->method('getId')->willReturn(10);
527
$this->quoteIdMock->expects($this->once())->method('delete');
0 commit comments