Skip to content

Commit

Permalink
Fixed order in testcase.
Browse files Browse the repository at this point in the history
  • Loading branch information
romanb committed Jun 7, 2010
1 parent 37b4652 commit a90ad24
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Doctrine/Tests/ORM/Functional/Ticket/DDC599Test.php
Expand Up @@ -8,10 +8,11 @@ class DDC599Test extends \Doctrine\Tests\OrmFunctionalTestCase
protected function setUp()
{
parent::setUp();
//$this->_em->getConnection()->getConfiguration()->setSQLLogger(new \Doctrine\DBAL\Logging\EchoSQLLogger);
try {
$this->_schemaTool->createSchema(array(
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC599Subitem'),
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC599Item'),
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC599Subitem'),
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC599Child'),
));
} catch (\Exception $ignored) {}
Expand Down

0 comments on commit a90ad24

Please sign in to comment.