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

Fix CS

parent 2ebae44b
......@@ -32,8 +32,8 @@ class DBAL421Test extends \Doctrine\Tests\DbalFunctionalTestCase
{
$statement = $this->_conn->prepare($this->getSelectGuidSql());
$guids = array();
for ($i = 0; $i < 99; $i++)
{
for ($i = 0; $i < 99; $i++) {
$statement->execute();
$guid = $statement->fetchColumn();
$this->assertNotContains($guid, $guids, "Duplicate GUID detected");
......@@ -45,4 +45,4 @@ class DBAL421Test extends \Doctrine\Tests\DbalFunctionalTestCase
{
return "SELECT " . $this->_conn->getDatabasePlatform()->getGuidExpression();
}
}
\ No newline at end of file
}
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