Commit 50ed0652 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Remove test that was merged by accident (DBAL-79).

parent a8bf19ea
......@@ -422,21 +422,6 @@ class TableTest extends \PHPUnit_Framework_TestCase
$this->assertEquals('"bar"', $table->getQuotedName($sqlitePlatform));
}
/**
* @group DBAL-79
*/
public function testTableHasPrimaryKey()
{
$table = new Table("test");
$this->assertFalse($table->hasPrimaryKey());
$table->addColumn("foo", "integer");
$table->setPrimaryKey(array("foo"));
$this->assertTrue($table->hasPrimaryKey());
}
/**
* @group DBAL-91
*/
......
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