mirror of
https://github.com/predis/predis.git
synced 2026-09-05 07:16:44 +00:00
Fix test.
This commit is contained in:
@@ -146,8 +146,6 @@ class StringBitFieldTest extends PredisCommandTestCase
|
||||
$this->expectException('Predis\Response\ServerException');
|
||||
$this->expectExceptionMessage('Operation against a key holding the wrong kind of value');
|
||||
|
||||
$this->markTestSkipped('Currently skipped due issues in Redis (see antirez/redis#3259).');
|
||||
|
||||
$redis = $this->getClient();
|
||||
|
||||
$redis->lpush('metavars', 'foo');
|
||||
|
||||
@@ -291,9 +291,9 @@ class SentinelReplicationTest extends PredisTestCase
|
||||
$sentinel1->expects($this->exactly(3))
|
||||
->method('executeCommand')
|
||||
->withConsecutive(
|
||||
$this->isRedisCommand('SENTINEL', array('sentinels', 'svc')),
|
||||
$this->isRedisCommand('SENTINEL', array('get-master-addr-by-name', 'svc')),
|
||||
$this->isRedisCommand('SENTINEL', array('slaves', 'svc'))
|
||||
array($this->isRedisCommand('SENTINEL', array('sentinels', 'svc'))),
|
||||
array($this->isRedisCommand('SENTINEL', array('get-master-addr-by-name', 'svc'))),
|
||||
array($this->isRedisCommand('SENTINEL', array('slaves', 'svc')))
|
||||
)
|
||||
->will($this->onConsecutiveCalls(
|
||||
// SENTINEL sentinels svc
|
||||
|
||||
Reference in New Issue
Block a user