We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fffb6ff commit 002aa19Copy full SHA for 002aa19
dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/ProductTest.php
@@ -1573,9 +1573,14 @@ public function testExistingProductWithUrlKeys()
1573
*/
1574
public function testImportWithoutUrlKeys()
1575
{
1576
+ /**
1577
+ * Products `simple1` and `simple2` are created by fixture so already
1578
+ * have a URL Key, whereas `simple3` is new so will use the product
1579
+ * name provided in the CSV import for its URL Key.
1580
+ */
1581
$products = [
- 'simple1' => 'simple-1',
- 'simple2' => 'simple-2',
1582
+ 'simple1' => 'url-key',
1583
+ 'simple2' => 'url-key2',
1584
'simple3' => 'simple-3'
1585
];
1586
$filesystem = $this->objectManager->create(\Magento\Framework\Filesystem::class);
0 commit comments