Browse Source

Re-enable redis tests as they seem to pass (at least for me).

Mark Story 8 years ago
parent
commit
8cb84e7aa7
1 changed files with 0 additions and 1 deletions
  1. 0 1
      tests/TestCase/Cache/Engine/RedisEngineTest.php

+ 0 - 1
tests/TestCase/Cache/Engine/RedisEngineTest.php

@@ -33,7 +33,6 @@ class RedisEngineTest extends TestCase
     {
         parent::setUp();
         $this->skipIf(!class_exists('Redis'), 'Redis extension is not installed or configured properly.');
-        $this->skipIf(version_compare(PHP_VERSION, '7.2.0dev', '>='), 'Redis is misbehaving in PHP7.2');
 
         // @codingStandardsIgnoreStart
         $socket = @fsockopen('127.0.0.1', 6379, $errno, $errstr, 1);