Browse Source

Check for php7.2dev travis isn't running beta just yet.

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

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

@@ -33,7 +33,7 @@ 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.0beta', '>='), 'Redis is misbehaving in PHP7.2');
+        $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);