Fix tests not using variables reported by psalm

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2025-12-14 23:56:49 +01:00
parent 1ce790d99d
commit c144b5e3d6
No known key found for this signature in database
GPG Key ID: 70684F4717D49A31

View File

@ -902,7 +902,9 @@ class TableTest extends AbstractTestCase
$comment,
$virtuality,
$expression,
$move_to
$move_to,
$columnsWithIndex,
$oldColumnName
);
self::assertSame(
'`created_ts` TIMESTAMP(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6)',
@ -941,7 +943,9 @@ class TableTest extends AbstractTestCase
$comment,
$virtuality,
$expression,
$move_to
$move_to,
$columnsWithIndex,
$oldColumnName
);
self::assertSame(
'`created_ts` INT(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6)',
@ -978,7 +982,9 @@ class TableTest extends AbstractTestCase
$comment,
$virtuality,
$expression,
$move_to
$move_to,
$columnsWithIndex,
$oldColumnName
);
self::assertSame(
'`created_ts` INT(6) NOT NULL DEFAULT UNIX_TIMESTAMP()',