From 2af43ee6a794f03f44cea32f502e754c6040dd74 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Thu, 22 May 2025 22:48:42 +0900 Subject: [PATCH] Remove md5 from list of acceptable hashes in unit test --- tests/unit/framework/PasswordTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/framework/PasswordTest.php b/tests/unit/framework/PasswordTest.php index c00c81aca..b739d888e 100644 --- a/tests/unit/framework/PasswordTest.php +++ b/tests/unit/framework/PasswordTest.php @@ -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()