Skip to content

Commit 9479474

Browse files
committed
B2B-2023: [AWS S3] [Integration Tests]: Investigate Test Failures in CatalogImportExport module
1 parent 696b437 commit 9479474

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ public function testImportWithUnexistingImages(): void
126126
{
127127
$this->exportProducts();
128128
$this->assertTrue($this->directory->isExist($this->filePath), 'Products were not imported to file');
129-
#$fileContent = $this->csvReader->getData($this->directory->getAbsolutePath($this->filePath));
130129
$fileContent = $this->getCsvData($this->directory->getAbsolutePath($this->filePath));
131130
$this->assertCount(2, $fileContent);
132131
$this->updateFileImagesToInvalidValues();
@@ -197,7 +196,7 @@ private function prepareFile(string $file): CsvSource
197196
private function assertImportErrors(): void
198197
{
199198
$validationErrors = $this->import->setSource($this->prepareFile($this->filePath))->validateData();
200-
#$this->assertEmpty($validationErrors->getAllErrors());
199+
$this->assertEmpty($validationErrors->getAllErrors());
201200
$this->import->getErrorAggregator()->clear();
202201
$this->import->importData();
203202
$importErrors = $this->import->getErrorAggregator()->getAllErrors();

0 commit comments

Comments
 (0)