From 8288763198ae42a0a95efa3b8cd7ee376f386b2a Mon Sep 17 00:00:00 2001 From: Nicole Cordes Date: Mon, 19 Nov 2012 22:55:01 +0100 Subject: [PATCH] [BUGFIX] Tests failing in Core::CategoryCollectionTest Some tests are failing in TYPO3\CMS\Core\Tests\Functional\Category\Collection\CategoryCollectionTest due to false CREATE TABLE statement. Change-Id: I8fe03b4d02c8f85fcddf8be06010eb8b2f079102 Fixes: #43122 Release: 6.0 Reviewed-on: http://review.typo3.org/16594 Reviewed-by: Wouter Wolters Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn --- .../Functional/Category/Collection/CategoryCollectionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/core/Tests/Functional/Category/Collection/CategoryCollectionTest.php b/typo3/sysext/core/Tests/Functional/Category/Collection/CategoryCollectionTest.php index 1d2658e2cb10..a9beb0e18160 100644 --- a/typo3/sysext/core/Tests/Functional/Category/Collection/CategoryCollectionTest.php +++ b/typo3/sysext/core/Tests/Functional/Category/Collection/CategoryCollectionTest.php @@ -268,7 +268,7 @@ class CategoryCollectionTest extends \TYPO3\CMS\Core\Tests\UnitTestCase { * @return void */ private function createDummyTable() { - $sql = 'CREATE TABLE {' . $this->tableName . '} (' . LF . TAB . + $sql = 'CREATE TABLE ' . $this->tableName . ' (' . LF . TAB . 'uid int(11) auto_increment,' . LF . TAB . 'pid int(11) unsigned DEFAULT \'0\' NOT NULL,' . LF . TAB . 'title tinytext,' . LF . TAB . -- 2.20.1