Skip to content

Commit ee79433

Browse files
committed
MC-33809: Admin: Move item from SC to wishlist (checkout)
1 parent e5fd395 commit ee79433

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/AddressTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function addressTypeProvider(): array
9393
],
9494
'shipping_address' => [
9595
AddressType::TYPE_SHIPPING,
96-
]
96+
],
9797
];
9898
}
9999

@@ -106,6 +106,6 @@ public function addressTypeProvider(): array
106106
*/
107107
private function getAddressByType(OrderInterface $order, string $type): ?OrderAddressInterface
108108
{
109-
return $type === AddressType::TYPE_BILLING ? $order->getBillingAddress() : $order->getShippingAddress();
109+
return $type === AddressType::TYPE_BILLING ? $order->getBillingAddress() : $order->getShippingAddress();
110110
}
111111
}

dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AddressSaveTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function addressTypeProvider(): array
8888
],
8989
'shipping_address' => [
9090
AddressType::TYPE_SHIPPING,
91-
]
91+
],
9292
];
9393
}
9494

0 commit comments

Comments
 (0)