Skip to content

Commit efc9024

Browse files
committed
MAGETWO-91640: Scheduled Import of Products fails on error when errors should be skipped
- Fixed static test
1 parent 9646ade commit efc9024

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/ImportExport/Model/Import.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ public function validateSource(\Magento\ImportExport\Model\Import\AbstractSource
636636
if ($errorsCount
637637
&& $validationStrategy === ProcessingErrorAggregatorInterface::VALIDATION_STRATEGY_SKIP_ERRORS
638638
) {
639-
$this->messageManager->addWarningMessage(sprintf(__('Skipped errors: %d'), $errorsCount));
639+
$this->messageManager->addWarningMessage(__('Skipped errors: %1', $errorsCount));
640640
$result = true;
641641
}
642642

0 commit comments

Comments
 (0)