mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Fixing fails in dbo source test caused by not enough fixtures being loaded.
This commit is contained in:
parent
c084456a08
commit
a166ea78cb
1 changed files with 1 additions and 1 deletions
|
@ -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'));
|
||||||
|
|
Loading…
Reference in a new issue