Skip to content

Commit 11b271e

Browse files
committed
fixed failing test
1 parent 215e62d commit 11b271e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Export/RecordTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public function testExportModelFromDirectory()
102102
$this->assertEqual($this->adapter->pop(), 'ALTER TABLE cms__category_languages ADD CONSTRAINT cms__category_languages_category_id_cms__category_id FOREIGN KEY (category_id) REFERENCES cms__category(id) ON DELETE CASCADE');
103103
$this->assertEqual($this->adapter->pop(), 'CREATE TABLE cms__category_languages (id BIGINT AUTO_INCREMENT, name TEXT, category_id BIGINT, language_id BIGINT, INDEX index_category_idx (category_id), INDEX index_language_idx (language_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = INNODB');
104104
$this->assertEqual($this->adapter->pop(), 'CREATE TABLE cms__category (id BIGINT AUTO_INCREMENT, created DATETIME, parent BIGINT, position MEDIUMINT, active BIGINT, INDEX index_parent_idx (parent), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = INNODB');
105-
$this->assertEqual($this->adapter->pop(), 'BEGIN TRANSACTION');
105+
$this->assertEqual($this->adapter->pop(), 'START TRANSACTION');
106106
}
107107

108108
}

0 commit comments

Comments
 (0)