Skip to content

Commit

Permalink
fix Db/Adapter/Driver/Pdo/StatementIntegrationTest.php : should still…
Browse files Browse the repository at this point in the history
… use array() syntax
  • Loading branch information
samsonasik committed Nov 23, 2013
1 parent 2c30ef6 commit 519bcb1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function testStatementExecuteWillConvertPhpBoolToPdoBoolWhenBinding()
$this->equalTo(false),
$this->equalTo(\PDO::PARAM_BOOL)
);
$this->statement->execute(['foo' => false]);
$this->statement->execute(array('foo' => false));
}

public function testStatementExecuteWillUsePdoStrByDefaultWhenBinding()
Expand All @@ -61,7 +61,7 @@ public function testStatementExecuteWillUsePdoStrByDefaultWhenBinding()
$this->equalTo('bar'),
$this->equalTo(\PDO::PARAM_STR)
);
$this->statement->execute(['foo' => 'bar']);
$this->statement->execute(array('foo' => 'bar'));
}

}

0 comments on commit 519bcb1

Please sign in to comment.