Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/PHPUnit/Integration/Updater/Migration/Db/MigrationsTest.php')
-rw-r--r--tests/PHPUnit/Integration/Updater/Migration/Db/MigrationsTest.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/PHPUnit/Integration/Updater/Migration/Db/MigrationsTest.php b/tests/PHPUnit/Integration/Updater/Migration/Db/MigrationsTest.php
index 73d0716a7f..496a01df20 100644
--- a/tests/PHPUnit/Integration/Updater/Migration/Db/MigrationsTest.php
+++ b/tests/PHPUnit/Integration/Updater/Migration/Db/MigrationsTest.php
@@ -32,14 +32,14 @@ class MigrationsTest extends IntegrationTestCase
private $testTable = 'tablename';
private $testTablePrefixed = '';
- public static function setUpBeforeClass()
+ public static function setUpBeforeClass(): void
{
parent::setUpBeforeClass();
self::dropTestTableIfNeeded();
}
- public static function tearDownAfterClass()
+ public static function tearDownAfterClass(): void
{
self::dropTestTableIfNeeded();
@@ -52,7 +52,7 @@ class MigrationsTest extends IntegrationTestCase
Db::exec("DROP TABLE IF EXISTS `$table`");
}
- public function setUp()
+ public function setUp(): void
{
parent::setUp();
@@ -156,6 +156,7 @@ class MigrationsTest extends IntegrationTestCase
public function test_changeColumnType()
{
$this->factory->changeColumnType($this->testTable, 'column2', 'SMALLINT(4) NOT NULL')->exec();
+ $this->assertTrue(true);
}
/**