Browse Source

Test suite: update client tests.

Daniele Alessandri 15 năm trước cách đây
mục cha
commit
c5f6ca1d90
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      test/PredisClientFeatures.php

+ 1 - 1
test/PredisClientFeatures.php

@@ -125,7 +125,7 @@ class PredisClientFeaturesTestSuite extends PHPUnit_Framework_TestCase {
         $cmd = new \Predis\Commands\SetMultiple();
         $cmd->setArgumentsArray(array('key1', 'value1', 'key2', 'value2'));
 
-        $this->assertType('\Predis\MultiBulkCommand', $cmd);
+        $this->assertType('\Predis\Command', $cmd);
         $this->assertEquals('MSET', $cmd->getCommandId());
         $this->assertFalse($cmd->closesConnection());
         $this->assertFalse($cmd->canBeHashed());