Merge pull request #13936 from frederic34/patch-7

Update AccountingAccountTest.php
This commit is contained in:
Laurent Destailleur 2020-05-23 14:16:50 +02:00 committed by GitHub
commit dd2a611452
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -204,7 +204,7 @@ class AccountingAccountTest extends PHPUnit\Framework\TestCase
$localobject->label='New label';
$result=$localobject->update($user);
print __METHOD__." id=".$id." result=".$result."\n";
print __METHOD__." id=".$localobject->id." result=".$result."\n";
$this->assertLessThan($result, 0);
return $localobject->id;

View File

@ -223,7 +223,7 @@ class ActionCommTest extends PHPUnit\Framework\TestCase
$result=$localobject->update($user);
$this->assertLessThan($result, 0);
print __METHOD__." id=".$id." result=".$result."\n";
print __METHOD__." id=".$localobject->id." result=".$result."\n";
return $localobject->id;
}

View File

@ -196,7 +196,7 @@ class CommandeTest extends PHPUnit\Framework\TestCase
$result=$localobject->update($user);
$this->assertLessThan($result, 0);
print __METHOD__." id=".$id." result=".$result."\n";
print __METHOD__." id=".$localobject->id." result=".$result."\n";
return $localobject;
}