소스 검색

Force the test suite to run on a client initialized with the Redis 2.2 profile for now.

Daniele Alessandri 14 년 전
부모
커밋
96132ee50c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/PredisShared.php

+ 1 - 1
test/PredisShared.php

@@ -49,7 +49,7 @@ class RC {
     }
 
     private static function createConnection() {
-        $serverProfile = Predis\RedisServerProfile::get('dev');
+        $serverProfile = Predis\RedisServerProfile::get('2.2');
         $connection = new Predis\Client(RC::getConnectionArguments(), $serverProfile);
         $connection->connect();
         $connection->select(RC::DEFAULT_DATABASE);