소스 검색

[tests] Fix minor oversight.

Daniele Alessandri 9 년 전
부모
커밋
ae054fc7e1
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      tests/Predis/Command/Processor/KeyPrefixProcessorTest.php

+ 4 - 4
tests/Predis/Command/Processor/KeyPrefixProcessorTest.php

@@ -788,6 +788,10 @@ class KeyPrefixProcessorTest extends PredisTestCase
                 array('a42059b356c875f0717db19a51f6aaca9ae659ea', 2, 'foo', 'hoge', 'bar', 'piyo'),
                 array('a42059b356c875f0717db19a51f6aaca9ae659ea', 2, 'prefix:foo', 'prefix:hoge', 'bar', 'piyo'),
             ),
+            array('BITPOS',
+                array('key', 0),
+                array('prefix:key', 0),
+            ),
             /* ---------------- Redis 2.8 ---------------- */
             array('SSCAN',
                 array('key', '0', 'MATCH', 'member:*', 'COUNT', 10),
@@ -829,10 +833,6 @@ class KeyPrefixProcessorTest extends PredisTestCase
                 array('key', '+', '-', 'LIMIT', '0', '10'),
                 array('prefix:key', '+', '-', 'LIMIT', '0', '10'),
             ),
-            array('BITPOS',
-                array('key', 0),
-                array('prefix:key', 0),
-            ),
         );
     }
 }