mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Adding fixtures that fixed MissingTableExceptions I was getting.
This commit is contained in:
parent
d13759522b
commit
64d1f799f8
1 changed files with 2 additions and 2 deletions
|
@ -3111,7 +3111,7 @@ class DboMysqlTest extends CakeTestCase {
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function testVirtualFieldsComplexRead() {
|
function testVirtualFieldsComplexRead() {
|
||||||
$this->loadFixtures('DataTest', 'Article', 'Comment', 'User', 'Tag');
|
$this->loadFixtures('DataTest', 'Article', 'Comment', 'User', 'Tag', 'ArticlesTag');
|
||||||
|
|
||||||
$Article = ClassRegistry::init('Article');
|
$Article = ClassRegistry::init('Article');
|
||||||
$commentTable = $this->Dbo->fullTableName('comments');
|
$commentTable = $this->Dbo->fullTableName('comments');
|
||||||
|
@ -3306,7 +3306,7 @@ class DboMysqlTest extends CakeTestCase {
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function testRealQueries() {
|
function testRealQueries() {
|
||||||
$this->loadFixtures('Apple', 'Article', 'User', 'Comment', 'Tag', 'Sample');
|
$this->loadFixtures('Apple', 'Article', 'User', 'Comment', 'Tag', 'Sample', 'ArticlesTag');
|
||||||
|
|
||||||
$Apple = ClassRegistry::init('Apple');
|
$Apple = ClassRegistry::init('Apple');
|
||||||
$Article = ClassRegistry::init('Article');
|
$Article = ClassRegistry::init('Article');
|
||||||
|
|
Loading…
Reference in a new issue