fix test 2

This commit is contained in:
Einhornimmond 2021-09-20 19:24:52 +02:00
parent 52055778b3
commit 88b66a0274

View File

@ -40,7 +40,7 @@ class AdminErrorsTable extends Table
$this->addBehavior('Timestamp'); $this->addBehavior('Timestamp');
$this->belongsTo('StateUsers', [ $this->belongsTo('User', [
'foreignKey' => 'state_user_id', 'foreignKey' => 'state_user_id',
'joinType' => 'INNER' 'joinType' => 'INNER'
]); ]);
@ -100,7 +100,7 @@ class AdminErrorsTable extends Table
*/ */
public function buildRules(RulesChecker $rules) public function buildRules(RulesChecker $rules)
{ {
$rules->add($rules->existsIn(['state_user_id'], 'StateUsers')); $rules->add($rules->existsIn(['state_user_id'], 'User'));
return $rules; return $rules;
} }