Skip to content

Commit 98c9154

Browse files
committed
Fixing static tests
1 parent f935b9a commit 98c9154

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

app/code/Magento/Checkout/Test/Unit/Plugin/ResetQuoteAddressesTest.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ class ResetQuoteAddressesTest extends TestCase
4141
*/
4242
protected function setUp()
4343
{
44-
$this->quoteMock = $this->createPartialMock(Quote::class,
45-
[
44+
$this->quoteMock = $this->createPartialMock(Quote::class, [
4645
'getAllAddresses',
4746
'getAllVisibleItems',
4847
'removeAddress',
@@ -99,8 +98,7 @@ public function testClearingTheAddressesFromEmptyQuote(
9998
->will($this->returnValue($quoteVisibleItems));
10099

101100
if ($quoteHasAddresses) {
102-
$address = $this->createPartialMock(Address::class,
103-
[
101+
$address = $this->createPartialMock(Address::class, [
104102
'getId'
105103
]
106104
);

0 commit comments

Comments
 (0)