Commit a6f5b3b0 authored by Steve Müller's avatar Steve Müller

fix tests

parent f2e6fa86
......@@ -524,7 +524,7 @@ class SchemaManagerFunctionalTestCase extends \Doctrine\Tests\DbalFunctionalTest
{
if ( ! $this->_conn->getDatabasePlatform()->supportsInlineColumnComments() &&
! $this->_conn->getDatabasePlatform()->supportsCommentOnStatement() &&
! $this->_conn->getDatabasePlatform()->getName() == 'mssql') {
$this->_conn->getDatabasePlatform()->getName() != 'mssql') {
$this->markTestSkipped('Database does not support column comments.');
}
......@@ -560,7 +560,7 @@ class SchemaManagerFunctionalTestCase extends \Doctrine\Tests\DbalFunctionalTest
{
if ( ! $this->_conn->getDatabasePlatform()->supportsInlineColumnComments() &&
! $this->_conn->getDatabasePlatform()->supportsCommentOnStatement() &&
! $this->_conn->getDatabasePlatform()->getName() == 'mssql') {
$this->_conn->getDatabasePlatform()->getName() != 'mssql') {
$this->markTestSkipped('Database does not support column comments.');
}
......
......@@ -28,6 +28,7 @@ class DBAL461Test extends \PHPUnit_Framework_TestCase
'precision' => 0,
'autoincrement' => false,
'collation' => 'foo',
'comment' => null,
));
$this->assertEquals('Decimal', (string)$column->getType());
......
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