Clean sql file

This commit is contained in:
Laurent Destailleur 2023-05-02 05:18:39 +02:00
parent 584c6c08b3
commit 7b1f83c6c9
2 changed files with 4 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -315,6 +315,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;