Remove md5 from list of acceptable hashes in unit test

This commit is contained in:
Kijin Sung 2025-05-22 22:48:42 +09:00
parent 6a29c54e78
commit 2af43ee6a7

View file

@ -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()