Skip to content

Commit 191c27e

Browse files
author
Michael Logvin
committed
MAGETWO-37614: Stabilize story
1 parent 9cd1547 commit 191c27e

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ public function testGetCustomer()
9797
{
9898
$expectedCustomer = $this->_loadCustomer();
9999
$actualCustomer = $this->_block->getCustomer();
100-
$this->assertEquals(count($expectedCustomer->__toArray()), count($actualCustomer->__toArray()));
101100
foreach ($expectedCustomer->__toArray() as $property => $value) {
102101
$expectedValue = is_numeric($value) ? intval($value) : $value;
103102
$actualValue = $actualCustomer->__toArray()[$property];

dev/tests/integration/testsuite/Magento/Customer/Controller/AccountTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ public function testOpenActionCreatePasswordAction()
252252
$token = Bootstrap::getObjectManager()->get('Magento\Framework\Math\Random')
253253
->getUniqueHash();
254254
$customer->changeResetPasswordLinkToken($token);
255+
$customer->save();
255256

256257
$this->getRequest()->setParam('token', $token);
257258
$this->getRequest()->setParam('id', $customer->getId());

0 commit comments

Comments
 (0)