phpredis has some methods named in lowercase, e.g. zinterstore. Code changed to reflect this

This commit is contained in:
Anton Terekhov
2011-12-06 18:40:54 +04:00
parent 5dd50d7a1f
commit e9ddaa6d92
2 changed files with 1 additions and 7 deletions

View File

@ -103,7 +103,7 @@ class RedisDebugTest extends PHPUnit_Framework_TestCase
$mock = $this->getMock('Redis', array('connect'));
$redisDebug = new RedisDebug($mock);
$this->setExpectedException('GeneralException');
$this->setExpectedException('PHPUnit_Framework_Error', 'call_user_func_array() expects parameter 1 to be a valid callback, class \'Mock_Redis_');
$this->assertNull($redisDebug->nothing('localhost', 4322));
}