summaryrefslogtreecommitdiffstats
path: root/tests/lib/DB/SqliteMigrationTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/DB/SqliteMigrationTest.php')
-rw-r--r--tests/lib/DB/SqliteMigrationTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/DB/SqliteMigrationTest.php b/tests/lib/DB/SqliteMigrationTest.php
index 4712fc6d70b..ecc6cbe0951 100644
--- a/tests/lib/DB/SqliteMigrationTest.php
+++ b/tests/lib/DB/SqliteMigrationTest.php
@@ -21,7 +21,7 @@ class SqliteMigrationTest extends \Test\TestCase {
/** @var string */
private $tableName;
- protected function setUp() {
+ protected function setUp(): void {
parent::setUp();
$this->connection = \OC::$server->getDatabaseConnection();
@@ -34,7 +34,7 @@ class SqliteMigrationTest extends \Test\TestCase {
$this->connection->exec("CREATE TABLE $this->tableName(t0 tinyint unsigned, t1 tinyint)");
}
- protected function tearDown() {
+ protected function tearDown(): void {
$this->connection->getSchemaManager()->dropTable($this->tableName);
parent::tearDown();
}