mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Remove md5 from list of acceptable hashes in unit test
This commit is contained in:
parent
6a29c54e78
commit
2af43ee6a7
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ class PasswordTest extends \Codeception\Test\Unit
|
|||
public function testGetDefaultAlgorithm()
|
||||
{
|
||||
$algo = Rhymix\Framework\Password::getDefaultAlgorithm();
|
||||
$this->assertTrue($algo === 'argon2id' || $algo === 'bcrypt' || $algo === 'pbkdf2' || $algo === 'md5');
|
||||
$this->assertTrue($algo === 'argon2id' || $algo === 'bcrypt' || $algo === 'pbkdf2');
|
||||
}
|
||||
|
||||
public function testGetWorkFactor()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue