Skip to content

Commit 08d256b

Browse files
MAGETWO-58269: [GitHub] Error in 'useForShipping'-parameter when saving billing address via API #6557
1 parent 7ffc233 commit 08d256b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

app/code/Magento/Quote/Model/ShippingAddressAssignment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function __construct(
2727
\Magento\Quote\Api\Data\CartExtensionFactory $cartExtensionFactory,
2828
\Magento\Quote\Model\Quote\ShippingAssignment\ShippingAssignmentProcessor $shippingAssignmentProcessor
2929
) {
30-
$this->shippingAssignmentProcessor = $shippingAssignmentProcessor;;
30+
$this->shippingAssignmentProcessor = $shippingAssignmentProcessor;
3131
$this->cartExtensionFactory = $cartExtensionFactory;
3232
}
3333

dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestBillingAddressManagementTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ public function testSetAddress($useForShipping)
167167
}
168168
}
169169

170-
public function setAddressDataProvider()
171-
{
172-
return [
173-
[true],
174-
[false]
175-
];
176-
}
170+
public function setAddressDataProvider()
171+
{
172+
return [
173+
[true],
174+
[false]
175+
];
176+
}
177177
}

0 commit comments

Comments
 (0)