소스 검색

Test suite: minor code formatting changes.

Daniele Alessandri 15 년 전
부모
커밋
35f7ea2895
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      test/PredisClientFeatures.php

+ 3 - 3
test/PredisClientFeatures.php

@@ -445,9 +445,9 @@ class PredisClientFeaturesTestSuite extends PHPUnit_Framework_TestCase {
         $client->getResponseReader()->setHandler('-', new \Predis\ResponseErrorSilentHandler());
 
         $replies = $client->pipeline(function($pipe) { 
-                $pipe->set('foo', 'bar');
-                $pipe->lpush('foo', 'piyo'); // LIST operation on STRING type returns an ERROR
-                $pipe->set('hoge', 'piyo');
+            $pipe->set('foo', 'bar');
+            $pipe->lpush('foo', 'piyo'); // LIST operation on STRING type returns an ERROR
+            $pipe->set('hoge', 'piyo');
         });
 
         $this->assertType('array', $replies);