Fix DB structure failing e2e test

Introduced by d9426e17e4

Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
This commit is contained in:
Maurício Meneghini Fauth 2025-12-16 16:32:27 -03:00
parent e623befa28
commit e48eea5dba
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8

View File

@ -52,7 +52,7 @@ class StructureTest extends TestBase
$this->waitForElement('id', 'functionConfirmOkButton')->click();
$success = $this->waitForElement('cssSelector', '.alert-success');
self::assertStringContainsString('MySQL returned an empty result', $success->getText());
self::assertStringContainsString('Table test_table has been emptied.', $success->getText());
$this->dbQuery(
'SELECT CONCAT("Count: ", COUNT(*)) as c FROM `' . $this->databaseName . '`.`test_table`',