Skip to content

Commit 4a5cc0c

Browse files
MAGETWO-96545: Wrong calculation of invoiced items in shipment document in order with bundle product after partial invoice
- Stabilize functional tets.
1 parent aca3c0d commit 4a5cc0c

File tree

1 file changed

+2
-2
lines changed
  • dev/tests/functional/tests/app/Magento/Bundle/Test/Fixture/Cart

1 file changed

+2
-2
lines changed

dev/tests/functional/tests/app/Magento/Bundle/Test/Fixture/Cart/Item.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ public function getData($key = null)
4545
: number_format($bundleOptions['assigned_products'][$optionKey]['data']['selection_price_value'], 2);
4646
$optionData = [
4747
'title' => $checkoutOption['title'],
48-
'value' => "{$qty} x {$value} {$price}",
49-
'sku' => "{$qty} x {$value}"
48+
'value' => "{$value} {$price}",
49+
'sku' => "{$value}"
5050
];
5151

5252
$checkoutBundleOptions[$checkoutOptionKey] = $optionData;

0 commit comments

Comments
 (0)