From 6e29bb4d944e09ad522dc2a773186430351765e0 Mon Sep 17 00:00:00 2001 From: AD7six Date: Tue, 17 May 2011 21:48:16 +0200 Subject: [PATCH] fix ModelIntegrationTest part 1 --- lib/Cake/Test/Case/Model/ModelIntegrationTest.php | 1 + 1 file changed, 1 insertion(+) 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'));