Skip to content

Commit 95ad7ed

Browse files
author
Roman Lytvynenko
committed
MC-30438: Inconsisten behavior when importing configurable products with custom options and when specifying store_view_code
1 parent a7233df commit 95ad7ed

File tree

1 file changed

+5
-5
lines changed
  • dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import

1 file changed

+5
-5
lines changed

dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/ProductTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -425,19 +425,19 @@ public function testSaveCustomOptionsWithMultipleStoreViews()
425425
$this->assertEquals(
426426
$expectedOptions,
427427
$actualOptions,
428-
'Expected and actual options arrays doesnt match'
428+
'Expected and actual options arrays does not match'
429429
);
430430

431431
// assert of options data
432432
$this->assertCount(
433433
count($expectedData['data']),
434434
$actualData['data'],
435-
'Expected and actual data count doesnt match'
435+
'Expected and actual data count does not match'
436436
);
437437
$this->assertCount(
438438
count($expectedData['values']),
439439
$actualData['values'],
440-
'Expected and actual values count doesnt match'
440+
'Expected and actual values count does not match'
441441
);
442442

443443
foreach ($expectedData['options'] as $expectedId => $expectedOption) {
@@ -449,13 +449,13 @@ public function testSaveCustomOptionsWithMultipleStoreViews()
449449
$this->assertEquals(
450450
$expectedData['data'][$expectedId],
451451
$actualData['data'][$actualId],
452-
'Expected data doesnt match actual data'
452+
'Expected data does not match actual data'
453453
);
454454
if (array_key_exists($expectedId, $expectedData['values'])) {
455455
$this->assertEquals(
456456
$expectedData['values'][$expectedId],
457457
$actualData['values'][$actualId],
458-
'Expected values doesnt match actual data'
458+
'Expected values does not match actual data'
459459
);
460460
}
461461
unset($actualData['options'][$actualId]);

0 commit comments

Comments
 (0)