diff --git a/lib/Cake/Test/Case/Model/Behavior/TreeBehaviorNumberTest.php b/lib/Cake/Test/Case/Model/Behavior/TreeBehaviorNumberTest.php index b3ed7516e7c..baeee291a88 100644 --- a/lib/Cake/Test/Case/Model/Behavior/TreeBehaviorNumberTest.php +++ b/lib/Cake/Test/Case/Model/Behavior/TreeBehaviorNumberTest.php @@ -1291,7 +1291,6 @@ public function testArraySyntax() { * @return void */ public function testFindThreaded() { - $this->loadFixtures('Person'); $Model = new Person(); $Model->recursive = -1; $Model->Behaviors->attach('Tree', array('parent' => 'mother_id')); diff --git a/lib/Cake/Test/Case/Model/BehaviorCollectionTest.php b/lib/Cake/Test/Case/Model/BehaviorCollectionTest.php index f29bc88fe0e..ac637f7bc5b 100644 --- a/lib/Cake/Test/Case/Model/BehaviorCollectionTest.php +++ b/lib/Cake/Test/Case/Model/BehaviorCollectionTest.php @@ -1082,8 +1082,6 @@ public function testBehaviorMethodDispatchingWithData() { * @return void */ public function testBindModelCallsInBehaviors() { - $this->loadFixtures('Article', 'Comment'); - // hasMany $Article = new Article(); $Article->unbindModel(array('hasMany' => array('Comment')));