diff options
Diffstat (limited to 'tests/lib/DB/SchemaDiffTest.php')
-rw-r--r-- | tests/lib/DB/SchemaDiffTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/DB/SchemaDiffTest.php b/tests/lib/DB/SchemaDiffTest.php index f74d800bfec..78963698571 100644 --- a/tests/lib/DB/SchemaDiffTest.php +++ b/tests/lib/DB/SchemaDiffTest.php @@ -50,7 +50,7 @@ class SchemaDiffTest extends TestCase { private $schemaFile; - protected function setUp() { + protected function setUp(): void { parent::setUp(); $this->schemaFile = \OC::$server->getTempManager()->getTemporaryFile(); @@ -61,7 +61,7 @@ class SchemaDiffTest extends TestCase { $this->testPrefix= strtolower($this->getUniqueID($this->config->getSystemValue('dbtableprefix', 'oc_'), 3)); } - protected function tearDown() { + protected function tearDown(): void { $this->manager->removeDBStructure($this->schemaFile); parent::tearDown(); } |