Update LocalTest.php

This commit is contained in:
Mou Ikkai
2020-09-30 17:54:50 -04:00
committed by GitHub
parent 63abff62e0
commit 4e3eda9072
+3 -3
View File
@@ -12,12 +12,12 @@ class LocalTest extends TestCase
*/
protected $object = null;
public function setUp()
public function setUp(): void
{
$this->object = new Local(realpath(__DIR__ . '/../../../resources/disk-a'));
}
public function tearDown()
public function tearDown(): void
{
}
@@ -120,4 +120,4 @@ class LocalTest extends TestCase
{
$this->assertGreaterThan(0, $this->object->getPartitionTotalSpace());
}
}
}