Remove redundant test

parent 6e920f38
...@@ -1442,9 +1442,6 @@ class SchemaManagerFunctionalTestCase extends \Doctrine\Tests\DbalFunctionalTest ...@@ -1442,9 +1442,6 @@ class SchemaManagerFunctionalTestCase extends \Doctrine\Tests\DbalFunctionalTest
$onlineTable = $this->_sm->listTableDetails('string_escaped_default_value'); $onlineTable = $this->_sm->listTableDetails('string_escaped_default_value');
self::assertSame($value, $onlineTable->getColumn('def_string')->getDefault(), 'should be able introspect the value of default'); self::assertSame($value, $onlineTable->getColumn('def_string')->getDefault(), 'should be able introspect the value of default');
$comparator = new Comparator();
self::assertFalse($comparator->diffTable($table, $onlineTable), 'introspected schema should have no differences');
$this->_conn->insert('string_escaped_default_value', array('def_foo' => 'foo')); $this->_conn->insert('string_escaped_default_value', array('def_foo' => 'foo'));
$row = $this->_conn->fetchAssoc('SELECT def_string FROM string_escaped_default_value'); $row = $this->_conn->fetchAssoc('SELECT def_string FROM string_escaped_default_value');
self::assertSame($value, $row['def_string'], 'inserted default value should be the configured default value'); self::assertSame($value, $row['def_string'], 'inserted default value should be the configured default value');
......
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