diff --git a/lib/Cake/Test/Case/Model/ModelIntegrationTest.php b/lib/Cake/Test/Case/Model/ModelIntegrationTest.php index df645755ce6..1b4d680249e 100644 --- a/lib/Cake/Test/Case/Model/ModelIntegrationTest.php +++ b/lib/Cake/Test/Case/Model/ModelIntegrationTest.php @@ -93,6 +93,7 @@ public function testAssociationLazyLoading() { */ public function testAssociationLazyLoadWithHABTM() { $this->loadFixtures('FruitsUuidTag', 'ArticlesTag'); + $this->db->cacheSources = false; $Article = new ArticleB(); $this->assertTrue(isset($Article->hasAndBelongsToMany['TagB'])); $this->assertFalse(property_exists($Article, 'TagB'));