1
0
mirror of synced 2024-12-14 23:26:04 +03:00

Fixed typo

This commit is contained in:
Francis Besset 2012-12-01 19:41:51 +01:00
parent 4bb6ff637c
commit 56b230a1f0

View File

@ -45,7 +45,7 @@ class SchemaToolTest extends \Doctrine\Tests\OrmTestCase
$expected = array('foo' => 'bar', 'baz' => array('key' => 'val'));
$this->assertEquals($expected, $schema->getTable('TestEntityWithAnnotationOptionsAttribute')->getOptions(), "options annotation are passed to the tables optionss");
$this->assertEquals($expected, $schema->getTable('TestEntityWithAnnotationOptionsAttribute')->getOptions(), "options annotation are passed to the tables options");
$this->assertEquals($expected, $schema->getTable('TestEntityWithAnnotationOptionsAttribute')->getColumn('test')->getCustomSchemaOptions(), "options annotation are passed to the columns customSchemaOptions");
}