2
0
forked from Wavyzz/dolibarr

Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into develop

This commit is contained in:
Laurent Destailleur
2023-05-02 05:28:32 +02:00
10 changed files with 170 additions and 54 deletions

View File

@@ -321,6 +321,10 @@ class CodingSqlTest extends PHPUnit\Framework\TestCase
$result=strpos($filecontent, 'eldy@');
print __METHOD__." Result for checking we don't have personal data = ".$result."\n";
$this->assertTrue($result===false, 'Found a bad key eldy@ into file '.$file);
$result=strpos($filecontent, 'INSERT INTO `llx_oauth_token`');
print __METHOD__." Result for checking we don't have data into llx_oauth_token = ".$result."\n";
$this->assertTrue($result===false, 'Found a non expected insert into file '.$file);
}
return;