This commit is contained in:
ldestailleur
2025-03-25 21:45:05 +01:00
parent 7b9b32cb9e
commit b321336562

View File

@@ -97,13 +97,14 @@ class ModulesTest extends CommonClassTest // TestCase //CommonClassTest
if ($modlabel == 'User') {
print __METHOD__." test table llx_user exists after Webhook init\n";
$infotable = $db->DDLInfoTable("llx_user");
$infotable = $db->DDLListTablesFull($db->database_name);
print var_export($infotable, true)."\n";
$this->assertGreaterThan(0, count($infotable));
}
if ($modlabel == 'Webhook') {
print __METHOD__." test table llx_webhook_target exists after Webhook init\n";
$infotable = $db->DDLInfoTable("llx_webhook_target");
//$infotable = $db->DDLInfoTable("llx_webhook_target");
$infotable = $db->DDLListTablesFull($db->database_name);
print var_export($infotable, true)."\n";
$this->assertGreaterThan(0, count($infotable));
}