mirror of
https://github.com/predis/predis.git
synced 2026-08-31 12:43:31 +00:00
[tests] Add "count" argument to SRANDMEMBER (since Redis >= 2.6).
This commit is contained in:
@@ -40,8 +40,8 @@ class SetRandomMemberTest extends CommandTestCase
|
||||
*/
|
||||
public function testFilterArguments()
|
||||
{
|
||||
$arguments = array('key');
|
||||
$expected = array('key');
|
||||
$arguments = array('key', 1);
|
||||
$expected = array('key', 1);
|
||||
|
||||
$command = $this->getCommand();
|
||||
$command->setArguments($arguments);
|
||||
|
||||
Reference in New Issue
Block a user