Skip to content

Commit

Permalink
Merge pull request #283 from deeky666/fix-schema-manager-test-case
Browse files Browse the repository at this point in the history
Fix SchemaManagerFunctionalTestCase composite foreign keys test
  • Loading branch information
beberlei committed Mar 12, 2013
2 parents 427a48c + 16e60e8 commit 0b355ce
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -639,7 +639,7 @@ public function testListForeignKeysComposite()
$this->_sm->createTable($this->getTestCompositeTable('test_create_fk4'));

$foreignKey = new \Doctrine\DBAL\Schema\ForeignKeyConstraint(
array('id', 'foreign_key_test'), 'test_create_fk4', array('id', 'other_id'), 'foreign_key_test_fk'
array('id', 'foreign_key_test'), 'test_create_fk4', array('id', 'other_id'), 'foreign_key_test_fk2'
);

$this->_sm->createForeignKey($foreignKey, 'test_create_fk3');
Expand Down

0 comments on commit 0b355ce

Please sign in to comment.