diff --git a/community_server/tests/TestCase/Model/Table/AdminErrorsTableTest.php b/community_server/tests/TestCase/Model/Table/AdminErrorsTableTest.php index 09d7a35fb..a258d9e25 100644 --- a/community_server/tests/TestCase/Model/Table/AdminErrorsTableTest.php +++ b/community_server/tests/TestCase/Model/Table/AdminErrorsTableTest.php @@ -24,7 +24,7 @@ class AdminErrorsTableTest extends TestCase */ public $fixtures = [ 'app.AdminErrors', - 'app.StateUsers' + 'app.User' ]; /** diff --git a/community_server/tests/TestCase/Model/Table/StateBalancesTableTest.php b/community_server/tests/TestCase/Model/Table/StateBalancesTableTest.php index 68049de34..c14b95c09 100644 --- a/community_server/tests/TestCase/Model/Table/StateBalancesTableTest.php +++ b/community_server/tests/TestCase/Model/Table/StateBalancesTableTest.php @@ -24,7 +24,7 @@ class StateBalancesTableTest extends TestCase */ public $fixtures = [ 'app.StateBalances', - 'app.StateUsers', + 'app.User', ]; /** diff --git a/community_server/tests/TestCase/Model/Table/StateErrorsTableTest.php b/community_server/tests/TestCase/Model/Table/StateErrorsTableTest.php index 21cbe6128..d8633a56a 100644 --- a/community_server/tests/TestCase/Model/Table/StateErrorsTableTest.php +++ b/community_server/tests/TestCase/Model/Table/StateErrorsTableTest.php @@ -24,7 +24,7 @@ class StateErrorsTableTest extends TestCase */ public $fixtures = [ 'app.StateErrors', - 'app.StateUsers', + 'app.User', 'app.TransactionTypes' ]; diff --git a/community_server/tests/TestCase/Model/Table/StateUserTransactionsTableTest.php b/community_server/tests/TestCase/Model/Table/StateUserTransactionsTableTest.php index 173ad8e12..dccb91b4e 100644 --- a/community_server/tests/TestCase/Model/Table/StateUserTransactionsTableTest.php +++ b/community_server/tests/TestCase/Model/Table/StateUserTransactionsTableTest.php @@ -24,7 +24,7 @@ class StateUserTransactionsTableTest extends TestCase */ public $fixtures = [ 'app.StateUserTransactions', - 'app.StateUsers', + 'app.User', 'app.Transactions', 'app.TransactionTypes', ]; diff --git a/community_server/tests/TestCase/Model/Table/StateUsersTableTest.php b/community_server/tests/TestCase/Model/Table/StateUsersTableTest.php index 49deb1166..803def3a7 100644 --- a/community_server/tests/TestCase/Model/Table/StateUsersTableTest.php +++ b/community_server/tests/TestCase/Model/Table/StateUsersTableTest.php @@ -23,7 +23,7 @@ class StateUsersTableTest extends TestCase * @var array */ public $fixtures = [ - 'app.StateUsers', + 'app.User', 'app.StateGroups', 'app.StateBalances', 'app.StateCreated', @@ -39,8 +39,8 @@ class StateUsersTableTest extends TestCase public function setUp() { parent::setUp(); - $config = TableRegistry::getTableLocator()->exists('StateUsers') ? [] : ['className' => StateUsersTable::class]; - $this->StateUsersTable = TableRegistry::getTableLocator()->get('StateUsers', $config); + $config = TableRegistry::getTableLocator()->exists('User') ? [] : ['className' => StateUsersTable::class]; + $this->StateUsersTable = TableRegistry::getTableLocator()->get('User', $config); } /**