Fix missing BITPOS in replication strategy.

This commit is contained in:
Daniele Alessandri
2015-07-23 11:30:32 +02:00
parent dede828008
commit 6459546e25
2 changed files with 4 additions and 1 deletions
@@ -245,7 +245,6 @@ class ReplicationStrategyTest extends PredisTestCase
'ECHO' => 'read',
'QUIT' => 'read',
'OBJECT' => 'read',
'BITCOUNT' => 'read',
'TIME' => 'read',
'SHUTDOWN' => 'disallowed',
'INFO' => 'disallowed',
@@ -281,6 +280,9 @@ class ReplicationStrategyTest extends PredisTestCase
'DECRBY' => 'write',
'GET' => 'read',
'GETBIT' => 'read',
'BITCOUNT' => 'read',
'BITPOS' => 'read',
'BITOP' => 'write',
'MGET' => 'read',
'SET' => 'write',
'GETRANGE' => 'read',