diff --git a/typo3/sysext/core/Tests/Unit/Crypto/PasswordHashing/BlowfishPasswordHashTest.php b/typo3/sysext/core/Tests/Unit/Crypto/PasswordHashing/BlowfishPasswordHashTest.php index 0e70278eb942..5adcb6191f25 100644 --- a/typo3/sysext/core/Tests/Unit/Crypto/PasswordHashing/BlowfishPasswordHashTest.php +++ b/typo3/sysext/core/Tests/Unit/Crypto/PasswordHashing/BlowfishPasswordHashTest.php @@ -23,16 +23,6 @@ */ class BlowfishPasswordHashTest extends UnitTestCase { - /** - * Sets up the fixtures for this testcase. - */ - protected function setUp() - { - if (!CRYPT_BLOWFISH) { - $this->markTestSkipped('Blowfish is not supported on your platform.'); - } - } - /** * @test */ diff --git a/typo3/sysext/core/Tests/Unit/Crypto/PasswordHashing/Md5PasswordHashTest.php b/typo3/sysext/core/Tests/Unit/Crypto/PasswordHashing/Md5PasswordHashTest.php index d31a60255f37..0863e1273745 100644 --- a/typo3/sysext/core/Tests/Unit/Crypto/PasswordHashing/Md5PasswordHashTest.php +++ b/typo3/sysext/core/Tests/Unit/Crypto/PasswordHashing/Md5PasswordHashTest.php @@ -23,16 +23,6 @@ */ class Md5PasswordHashTest extends UnitTestCase { - /** - * Sets up the fixtures for this testcase. - */ - protected function setUp() - { - if (!CRYPT_MD5) { - $this->markTestSkipped('Blowfish is not supported on your platform.'); - } - } - /** * @test */