Skip to content

Commit ac8ca68

Browse files
AC-1214 Fixed unit test failures
1 parent 289ed16 commit ac8ca68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Eav/Model/ResourceModel/ReadHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public function execute($entityType, $entityData, $arguments = [])
180180
$attributes = $connection->fetchAll($orderedUnionSelect);
181181
foreach ($attributes as $attributeValue) {
182182
if (isset($attributesMap[$attributeValue['attribute_id']])) {
183-
if (isset($attributeScopeGlobal[$attributeValue['attribute_id']]) &&
183+
if ($attributeScopeGlobal[$attributeValue['attribute_id']] &&
184184
(int)$attributeValue['store_id'] !== Store::DEFAULT_STORE_ID
185185
) {
186186
continue;

0 commit comments

Comments
 (0)