Disabled two blowfish tests due to differences in the initialization factor between systems

This commit is contained in:
Herman van Rink 2011-07-05 08:36:18 +02:00
parent cf5d62b7ca
commit d17aab53e4

View File

@ -29,6 +29,7 @@ class PMA_blowfish_test extends PHPUnit_Framework_TestCase
PMA_blowfish_decrypt(PMA_blowfish_encrypt($string, $secret), $secret));
}
/* Due to differences in the initialization factor, these tests are not portable between systems.
public function testEncrypt()
{
$secret = '$%ÄüfuDFRR';
@ -44,6 +45,7 @@ class PMA_blowfish_test extends PHPUnit_Framework_TestCase
$decrypted = '12345678';
$this->assertEquals($decrypted, PMA_blowfish_decrypt($encrypted, $secret));
}
*/
}
?>