From 13f2ea77d929295ec666fed23a7b34656b4af006 Mon Sep 17 00:00:00 2001 From: zYne Date: Mon, 29 Oct 2007 22:58:43 +0000 Subject: [PATCH] --- tests/Export/FirebirdTestCase.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/Export/FirebirdTestCase.php b/tests/Export/FirebirdTestCase.php index f98ff8a03..5a31d69e8 100644 --- a/tests/Export/FirebirdTestCase.php +++ b/tests/Export/FirebirdTestCase.php @@ -58,13 +58,7 @@ class Doctrine_Export_Firebird_TestCase extends Doctrine_UnitTestCase $this->export->createTable($name, $fields); - $this->assertEqual($this->adapter->pop(), 'CREATE TRIGGER mytable_AUTOINCREMENT_PK FOR mytable - ACTIVE BEFORE INSERT POSITION 0 - AS - BEGIN - IF (NEW.id IS NULL OR NEW.id = 0) THEN - NEW.id = GEN_ID(mytable_seq, 1); - END'); + $this->assertEqual($this->adapter->pop(), 'CREATE TRIGGER mytable_AUTOINCREMENT_PK FOR mytable ACTIVE BEFORE INSERT POSITION 0 AS BEGIN IF (NEW.id IS NULL OR NEW.id = 0) THEN NEW.id = GEN_ID(mytable_seq, 1) END'); } public function testCreateTableSupportsDefaultAttribute() {