You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 10, 2021. It is now read-only.
$this->assertNotEquals($userDao->getSalt(), $userCheckDao->getSalt(), 'Salt should have changed');
263
+
$this->assertTrue($this->User->hashExists(hash('sha256', $instanceSalt.$userCheckDao->getSalt().'newPassword')), 'New hash should have been added to password table');
254
264
$this->setupDatabase(array('default'));
255
265
256
266
$this->resetAll();
@@ -407,9 +417,8 @@ public function testUserexistsAction()
407
417
$resp = json_decode($this->getBody());
408
418
$this->assertTrue($resp->status == false);
409
419
410
-
// Must set the password here since our salt is dynamic
0 commit comments