diff --git a/lib/Cake/Console/Command/Task/FixtureTask.php b/lib/Cake/Console/Command/Task/FixtureTask.php index 106f072a5..284f1c25a 100644 --- a/lib/Cake/Console/Command/Task/FixtureTask.php +++ b/lib/Cake/Console/Command/Task/FixtureTask.php @@ -279,7 +279,7 @@ class FixtureTask extends BakeTask { */ protected function _generateSchema($tableInfo) { $schema = $this->_Schema->generateTable('f', $tableInfo); - return substr($schema, 10, -2); + return substr($schema, 13, -2); } /** diff --git a/lib/Cake/Test/Case/Console/Command/SchemaShellTest.php b/lib/Cake/Test/Case/Console/Command/SchemaShellTest.php index 898922617..0ad3be2fa 100644 --- a/lib/Cake/Test/Case/Console/Command/SchemaShellTest.php +++ b/lib/Cake/Test/Case/Console/Command/SchemaShellTest.php @@ -353,12 +353,12 @@ class SchemaShellTest extends CakeTestCase { $contents = $this->file->read(); $this->assertRegExp('/class TestPluginSchema/', $contents); - $this->assertRegExp('/var \$posts/', $contents); - $this->assertRegExp('/var \$auth_users/', $contents); - $this->assertRegExp('/var \$authors/', $contents); - $this->assertRegExp('/var \$test_plugin_comments/', $contents); - $this->assertNotRegExp('/var \$users/', $contents); - $this->assertNotRegExp('/var \$articles/', $contents); + $this->assertRegExp('/public \$posts/', $contents); + $this->assertRegExp('/public \$auth_users/', $contents); + $this->assertRegExp('/public \$authors/', $contents); + $this->assertRegExp('/public \$test_plugin_comments/', $contents); + $this->assertNotRegExp('/public \$users/', $contents); + $this->assertNotRegExp('/public \$articles/', $contents); CakePlugin::unload(); } diff --git a/lib/Cake/Test/Case/Console/Command/Task/FixtureTaskTest.php b/lib/Cake/Test/Case/Console/Command/Task/FixtureTaskTest.php index bc3644462..3e9218901 100644 --- a/lib/Cake/Test/Case/Console/Command/Task/FixtureTaskTest.php +++ b/lib/Cake/Test/Case/Console/Command/Task/FixtureTaskTest.php @@ -21,6 +21,7 @@ App::uses('ShellDispatcher', 'Console'); App::uses('Shell', 'Console'); App::uses('ConsoleOutput', 'Console'); App::uses('ConsoleInput', 'Console'); +App::uses('ModelTask', 'Console/Command/Task'); App::uses('FixtureTask', 'Console/Command/Task'); App::uses('TemplateTask', 'Console/Command/Task'); App::uses('DbConfigTask', 'Console/Command/Task'); diff --git a/lib/Cake/Test/Case/Model/CakeSchemaTest.php b/lib/Cake/Test/Case/Model/CakeSchemaTest.php index efb355ee4..fb0455dd0 100644 --- a/lib/Cake/Test/Case/Model/CakeSchemaTest.php +++ b/lib/Cake/Test/Case/Model/CakeSchemaTest.php @@ -741,7 +741,7 @@ class CakeSchemaTest extends CakeTestCase { 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => true)), ); $result = $this->Schema->generateTable('posts', $posts); - $this->assertRegExp('/var \$posts/', $result); + $this->assertRegExp('/public \$posts/', $result); } /** * testSchemaWrite method