Skip to content

Commit

Permalink
fixing cs error
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Mar 12, 2015
1 parent 23fd927 commit 2fc0d14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/Database/Statement/StatementDecoratorTest.php
Expand Up @@ -70,7 +70,8 @@ public function testLastInsertIdWithReturning()
*
* @return void
*/
public function testNoDoubleExecution() {
public function testNoDoubleExecution()
{
$inner = $this->getMock('\PDOStatement');
$driver = $this->getMock('\Cake\Database\Driver');
$statement = new StatementDecorator($inner, $driver);
Expand All @@ -79,5 +80,4 @@ public function testNoDoubleExecution() {
$this->assertSame($inner, $statement->getIterator());
$this->assertSame($inner, $statement->getIterator());
}

}

0 comments on commit 2fc0d14

Please sign in to comment.