Skip to content

Commit 12f9596

Browse files
authored
Merge pull request #426 from magento/MQE-1705
MQE-1705: Fix PHP Notice in Unit Test
2 parents f9d5fe4 + ac1f5bf commit 12f9596

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/DataGenerator/Objects/EntityDataObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ public function getDataByName($name, $uniquenessFormat)
206206
}
207207
return $this->formatUniqueData($name_lower, $uniquenessData, $uniquenessFormat);
208208
} elseif (array_key_exists($name, $this->data)) {
209-
if (is_array($this->data[$name_lower])) {
209+
if (is_array($this->data[$name])) {
210210
return $this->data[$name];
211211
}
212212
$this->data[$name] = $dataReferenceResolver->getDataReference(

0 commit comments

Comments
 (0)