Remove unnecessary loadFixtures() calls

This commit is contained in:
Kyle Robinson Young 2012-02-16 22:37:18 -08:00
parent a9c279aab0
commit 75882507bc
2 changed files with 0 additions and 3 deletions

View file

@ -1291,7 +1291,6 @@ class TreeBehaviorNumberTest extends CakeTestCase {
* @return void
*/
public function testFindThreaded() {
$this->loadFixtures('Person');
$Model = new Person();
$Model->recursive = -1;
$Model->Behaviors->attach('Tree', array('parent' => 'mother_id'));

View file

@ -1082,8 +1082,6 @@ class BehaviorCollectionTest extends CakeTestCase {
* @return void
*/
public function testBindModelCallsInBehaviors() {
$this->loadFixtures('Article', 'Comment');
// hasMany
$Article = new Article();
$Article->unbindModel(array('hasMany' => array('Comment')));