Skip to content

Commit

Permalink
Fix for Forward Ports batch 22 has issues with CICD builds
Browse files Browse the repository at this point in the history
  • Loading branch information
magento-engcom-team authored and ishakhsuvarov committed Feb 7, 2018
1 parent 17a26cb commit 8f1d8e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,8 @@ public function testValidateCustomerData()
$validationResponse = $this->_webApiCall($serviceInfo, $requestData);
$this->assertFalse($validationResponse['valid']);

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

public function testIsReadonly()
Expand Down
2 changes: 1 addition & 1 deletion lib/web/mage/adminhtml/form.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ define([
}

for (idTo in elementsMap) { //eslint-disable-line guard-for-in
for (idFrom in elementsMap[idTo]) {
for (idFrom in elementsMap[idTo]) { //eslint-disable-line guard-for-in
if ($(idFrom)) {
Event.observe(
$(idFrom),
Expand Down

0 comments on commit 8f1d8e7

Please sign in to comment.