Merge pull request #15351 from frederic34/patch-13

separate ref and rowid in members
This commit is contained in:
Laurent Destailleur
2020-12-27 15:18:55 +01:00
committed by GitHub
8 changed files with 92 additions and 57 deletions

View File

@@ -180,7 +180,10 @@ class AdherentTest extends PHPUnit\Framework\TestCase
$localobject->initAsSpecimen();
$localobject->typeid=$fk_adherent_type;
$result=$localobject->create($user);
print __METHOD__." result=".$result."\n";
print __METHOD__." result=".$result."\n";
if ($result < 0) {
print $localobject->error;
}
$this->assertLessThan($result, 0);
return $result;