Skip to content

Commit e5fffae

Browse files
committed
Fixing multi-line function call
1 parent 1d4c21b commit e5fffae

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app/code/Magento/Checkout/Test/Unit/Model/Cart/CollectQuoteTest.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,8 @@ protected function setUp()
9898
);
9999
$this->addressRepositoryMock = $this->createMock(AddressRepositoryInterface::class);
100100
$this->estimateAddressMock = $this->createMock(EstimateAddressInterface::class);
101-
$this->estimateAddressFactoryMock = $this->createPartialMock(EstimateAddressInterfaceFactory::class,
102-
['create']
103-
);
101+
$this->estimateAddressFactoryMock =
102+
$this->createPartialMock(EstimateAddressInterfaceFactory::class, ['create']);
104103
$this->shippingMethodManagerMock = $this->createMock(ShippingMethodManagementInterface::class);
105104
$this->quoteRepositoryMock = $this->createMock(CartRepositoryInterface::class);
106105
$this->quoteMock = $this->createMock(Quote::class);

0 commit comments

Comments
 (0)