Commit 4f6f844d authored by Benjamin Eberlei's avatar Benjamin Eberlei

Fix CS

parent 2ebae44b
...@@ -32,8 +32,8 @@ class DBAL421Test extends \Doctrine\Tests\DbalFunctionalTestCase ...@@ -32,8 +32,8 @@ class DBAL421Test extends \Doctrine\Tests\DbalFunctionalTestCase
{ {
$statement = $this->_conn->prepare($this->getSelectGuidSql()); $statement = $this->_conn->prepare($this->getSelectGuidSql());
$guids = array(); $guids = array();
for ($i = 0; $i < 99; $i++)
{ for ($i = 0; $i < 99; $i++) {
$statement->execute(); $statement->execute();
$guid = $statement->fetchColumn(); $guid = $statement->fetchColumn();
$this->assertNotContains($guid, $guids, "Duplicate GUID detected"); $this->assertNotContains($guid, $guids, "Duplicate GUID detected");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment