From d5cf2765dd5991a2476a0b0ba872a8bde34d157f Mon Sep 17 00:00:00 2001 From: AD7six Date: Mon, 18 Jun 2012 16:40:37 +0200 Subject: [PATCH] remove referencers to fixtures that don't exist --- lib/Cake/Test/Case/Controller/ControllerTest.php | 5 ++++- lib/Cake/Test/Case/Model/ModelTestBase.php | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/Cake/Test/Case/Controller/ControllerTest.php b/lib/Cake/Test/Case/Controller/ControllerTest.php index 1be77cf73..afa973b89 100644 --- a/lib/Cake/Test/Case/Controller/ControllerTest.php +++ b/lib/Cake/Test/Case/Controller/ControllerTest.php @@ -405,7 +405,10 @@ class ControllerTest extends CakeTestCase { * * @var array */ - public $fixtures = array('core.post', 'core.comment', 'core.name'); + public $fixtures = array( + 'core.post', + 'core.comment' + ); /** * reset environment. diff --git a/lib/Cake/Test/Case/Model/ModelTestBase.php b/lib/Cake/Test/Case/Model/ModelTestBase.php index 80be40954..371e27b1f 100644 --- a/lib/Cake/Test/Case/Model/ModelTestBase.php +++ b/lib/Cake/Test/Case/Model/ModelTestBase.php @@ -51,7 +51,7 @@ abstract class BaseModelTest extends CakeTestCase { 'core.category', 'core.category_thread', 'core.user', 'core.my_category', 'core.my_product', 'core.my_user', 'core.my_categories_my_users', 'core.my_categories_my_products', 'core.article', 'core.featured', 'core.article_featureds_tags', 'core.article_featured', - 'core.articles', 'core.numeric_article', 'core.tag', 'core.articles_tag', 'core.comment', + 'core.numeric_article', 'core.tag', 'core.articles_tag', 'core.comment', 'core.attachment', 'core.apple', 'core.sample', 'core.another_article', 'core.item', 'core.advertisement', 'core.home', 'core.post', 'core.author', 'core.bid', 'core.portfolio', 'core.product', 'core.project', 'core.thread', 'core.message', 'core.items_portfolio',