[tests] Add "count" argument to SRANDMEMBER (since Redis >= 2.6).

This commit is contained in:
Daniele Alessandri
2013-11-29 22:45:35 +01:00
parent d6173bb33b
commit 862da9a3b2
+2 -2
View File
@@ -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);