Skip to content

Commit f1a749b

Browse files
committed
ACP2E-3165: [Cloud] Getting error while checking the data in import data using CSV
- Fixed the static test failure.
1 parent 10db0d1 commit f1a749b

File tree

1 file changed

+1
-2
lines changed
  • app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/Customer

1 file changed

+1
-2
lines changed

app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/Customer/Storage.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,7 @@ private function loadCustomersData(array $customerIdentifiers): void
110110
$customers = $collection->getConnection()->fetchAll($chunkSelect);
111111
foreach ($customers as $customer) {
112112
$this->addCustomerByArray($customer);
113-
if (
114-
$this->configShare->isGlobalScope() &&
113+
if ($this->configShare->isGlobalScope() &&
115114
is_array(current($customerIdentifiers)) &&
116115
count(current($customerIdentifiers)) > 0 &&
117116
isset(current($customerIdentifiers)['website_id']) &&

0 commit comments

Comments
 (0)