Browse Source

fixing cs error

José Lorenzo Rodríguez 11 years ago
parent
commit
2fc0d14ac6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/TestCase/Database/Statement/StatementDecoratorTest.php

+ 2 - 2
tests/TestCase/Database/Statement/StatementDecoratorTest.php

@@ -70,7 +70,8 @@ class StatemetDecoratorTest extends TestCase
      *
      * @return void
      */
-    public function testNoDoubleExecution() {
+    public function testNoDoubleExecution()
+    {
         $inner = $this->getMock('\PDOStatement');
         $driver = $this->getMock('\Cake\Database\Driver');
         $statement = new StatementDecorator($inner, $driver);
@@ -79,5 +80,4 @@ class StatemetDecoratorTest extends TestCase
         $this->assertSame($inner, $statement->getIterator());
         $this->assertSame($inner, $statement->getIterator());
     }
-
 }