Fixing fails in dbo source test caused by not enough fixtures being loaded.

This commit is contained in:
mark_story 2010-06-25 23:40:29 -04:00
parent c084456a08
commit a166ea78cb

View file

@ -3274,7 +3274,7 @@ class DboSourceTest extends CakeTestCase {
* @return void * @return void
*/ */
function testStatements() { function testStatements() {
$this->loadFixtures('Article', 'User', 'Comment', 'Tag'); $this->loadFixtures('Article', 'User', 'Comment', 'Tag', 'Attachment', 'ArticlesTag');
$Article = new Article(); $Article = new Article();
$result = $this->testDb->update($Article, array('field1'), array('value1')); $result = $this->testDb->update($Article, array('field1'), array('value1'));