Skip to content

Commit 8f1d8e7

Browse files
magento-engcom-teamishakhsuvarov
authored andcommitted
Fix for Forward Ports batch 22 has issues with CICD builds
1 parent 17a26cb commit 8f1d8e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dev/tests/api-functional/testsuite/Magento/Customer/Api/AccountManagementTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -575,8 +575,8 @@ public function testValidateCustomerData()
575575
$validationResponse = $this->_webApiCall($serviceInfo, $requestData);
576576
$this->assertFalse($validationResponse['valid']);
577577

578-
$this->assertEquals('The value of attribute "firstname" must be set', $validationResponse['messages'][0]);
579-
$this->assertEquals('The value of attribute "lastname" must be set', $validationResponse['messages'][1]);
578+
$this->assertEquals('The value of attribute "First Name" must be set', $validationResponse['messages'][0]);
579+
$this->assertEquals('The value of attribute "Last Name" must be set', $validationResponse['messages'][1]);
580580
}
581581

582582
public function testIsReadonly()

lib/web/mage/adminhtml/form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ define([
393393
}
394394

395395
for (idTo in elementsMap) { //eslint-disable-line guard-for-in
396-
for (idFrom in elementsMap[idTo]) {
396+
for (idFrom in elementsMap[idTo]) { //eslint-disable-line guard-for-in
397397
if ($(idFrom)) {
398398
Event.observe(
399399
$(idFrom),

0 commit comments

Comments
 (0)