Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit 5d084ce

Browse files
committed
magento-engcom/magento2ce#1358: Static tests fix
1 parent 8f1d8e7 commit 5d084ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Eav/Model/Entity/Attribute/Backend/AbstractBackend.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ public function validate($object)
249249
}
250250

251251
if ($attribute->getIsUnique()) {
252-
if (!$attribute->getEntity()->checkAttributeUniqueValue($attribute, $object)) {
252+
if (!$attribute->getEntity()->checkAttributeUniqueValue($attribute, $object)) {
253253
throw new LocalizedException(__('The value of attribute "%1" must be unique', $label));
254254
}
255255
}

0 commit comments

Comments
 (0)