Browse Source

Fixed indentation

Jose Lorenzo Rodriguez 11 years ago
parent
commit
ba426f15f9
1 changed files with 3 additions and 3 deletions
  1. 3 3
      tests/TestCase/ORM/QueryTest.php

+ 3 - 3
tests/TestCase/ORM/QueryTest.php

@@ -1013,9 +1013,9 @@ class QueryTest extends TestCase
             function ($v, $k, $mr) {
                 $mr->emitIntermediate($v, $k);
             },
-                function ($v, $k, $mr) {
-                    $mr->emit($v[0] + 1);
-                }
+            function ($v, $k, $mr) {
+                $mr->emit($v[0] + 1);
+            }
         );
 
         $this->assertEquals([2, 3], iterator_to_array($query->all()));