DDC-3699 - #1387 - catching specific exceptions
This commit is contained in:
parent
86abbb0e78
commit
173729e560
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
<?php
|
||||
|
||||
use Doctrine\DBAL\Schema\SchemaException;
|
||||
use Doctrine\Tests\Models\DDC3699\DDC3699Parent;
|
||||
use Doctrine\Tests\Models\DDC3699\DDC3699RelationOne;
|
||||
use Doctrine\Tests\Models\DDC3699\DDC3699RelationMany;
|
||||
|
@ -21,7 +22,7 @@ class DDC3597Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
|||
$this->_em->getClassMetadata(DDC3699RelationMany::CLASSNAME),
|
||||
$this->_em->getClassMetadata(DDC3699Child::CLASSNAME),
|
||||
));
|
||||
} catch (\Exception $e) {
|
||||
} catch (SchemaException $e) {
|
||||
// should throw error on second because schema is already created
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue