Skip to content

Commit 4ed7a68

Browse files
author
Andrey Konosov
committed
Merge commit 'refs/pull/3/head' of https://github.com/magento/magento2ce into epam-3-1
2 parents d8ac171 + c9e3847 commit 4ed7a68

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

app/code/Magento/BundleImportExport/composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-catalog": "0.74.0-beta11",
7-
"magento/module-import-export": "0.74.0-beta11",
8-
"magento/module-catalog-import-export": "0.74.0-beta11",
9-
"magento/module-bundle": "0.74.0-beta11",
10-
"magento/module-eav": "0.74.0-beta11",
11-
"magento/framework": "0.74.0-beta11",
6+
"magento/module-catalog": "0.74.0-beta12",
7+
"magento/module-import-export": "0.74.0-beta12",
8+
"magento/module-catalog-import-export": "0.74.0-beta12",
9+
"magento/module-bundle": "0.74.0-beta12",
10+
"magento/module-eav": "0.74.0-beta12",
11+
"magento/framework": "0.74.0-beta12",
1212
"magento/magento-composer-installer": "*"
1313
},
1414
"type": "magento2-module",
15-
"version": "0.74.0-beta11",
15+
"version": "0.74.0-beta12",
1616
"license": [
1717
"OSL-3.0",
1818
"AFL-3.0"

setup/src/Magento/Setup/Fixtures/ConfigurableProductsFixture.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ public function execute()
624624
$pathSize = count($structure);
625625
if ($pathSize > 1) {
626626
$path = [];
627-
for ($i = 0; $i < $pathSize; $i++) {
627+
for ($i = 1; $i < $pathSize; $i++) {
628628
$path[] = $category->load($structure[$i])->getName();
629629
}
630630
array_shift($path);
@@ -645,7 +645,7 @@ public function execute()
645645
return $result[$index % count($result)][0];
646646
};
647647
$productCategory = function ($index) use ($result) {
648-
return $result[$index % count($result)][1];
648+
return $result[$index % count($result)][2] . '/' . $result[$index % count($result)][1];
649649
};
650650

651651
/**

0 commit comments

Comments
 (0)