Skip to content

Commit c852db6

Browse files
committed
MDVA-280: Portdown MAGETWO-51390: Private Data of Registered Customer May Be Retrieved with Quote Web API by Anonymous
- Fixed code style mistake
1 parent ad2f9b0 commit c852db6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/code/Magento/Quote/Test/Unit/Model/QuoteManagementTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,10 @@ public function testAssignCustomer()
518518
$customerId = 455;
519519
$storeId = 5;
520520

521-
$this->getPropertyValue($this->model, 'quoteIdMaskFactory')->expects($this->once())->method('create')->willReturn($this->quoteIdMock);
521+
$this->getPropertyValue($this->model, 'quoteIdMaskFactory')
522+
->expects($this->once())
523+
->method('create')
524+
->willReturn($this->quoteIdMock);
522525
$this->quoteIdMock->expects($this->once())->method('load')->with($cartId, 'quote_id')->willReturnSelf();
523526
$this->quoteIdMock->expects($this->once())->method('getId')->willReturn(10);
524527
$this->quoteIdMock->expects($this->once())->method('delete');

0 commit comments

Comments
 (0)