Skip to content

Commit

Permalink
remove referencers to fixtures that don't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
AD7six committed Jun 18, 2012
1 parent a6954a7 commit d5cf276
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion lib/Cake/Test/Case/Controller/ControllerTest.php
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Model/ModelTestBase.php
Expand Up @@ -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',
Expand Down

0 comments on commit d5cf276

Please sign in to comment.