Browse Source

[tests] Fix tests.

Daniele Alessandri 11 năm trước cách đây
mục cha
commit
1022be6010

+ 0 - 0
tests/Predis/Protocol/Text/Handler/IntegerResponse.php → tests/Predis/Protocol/Text/Handler/IntegerResponseTest.php


+ 0 - 0
tests/Predis/Protocol/Text/Handler/MultiBulkResponse.php → tests/Predis/Protocol/Text/Handler/MultiBulkResponseTest.php


+ 1 - 1
tests/Predis/Protocol/Text/Handler/StreamableMultiBulkResponse.php → tests/Predis/Protocol/Text/Handler/StreamableMultiBulkResponseTest.php

@@ -30,7 +30,7 @@ class StreamableMultiBulkResponseTest extends StandardTestCase
         $connection->expects($this->never())->method('readLine');
         $connection->expects($this->never())->method('readBytes');
 
-        $this->assertInstanceOf('Predis\Iterator\MultiBulkResponseSimple', $handler->handle($connection, '1'));
+        $this->assertInstanceOf('Predis\Response\Iterator\MultiBulkResponseSimple', $handler->handle($connection, '1'));
     }
 
     /**