From d17aab53e4fd3a9f45428e86864c8a985e2a0100 Mon Sep 17 00:00:00 2001 From: Herman van Rink Date: Tue, 5 Jul 2011 08:36:18 +0200 Subject: [PATCH] Disabled two blowfish tests due to differences in the initialization factor between systems --- test/libraries/PMA_blowfish_test.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/libraries/PMA_blowfish_test.php b/test/libraries/PMA_blowfish_test.php index 3033358f06..d860bd05cf 100644 --- a/test/libraries/PMA_blowfish_test.php +++ b/test/libraries/PMA_blowfish_test.php @@ -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)); } + */ } ?>