diff options
Diffstat (limited to 'tests/lib/Files')
-rw-r--r-- | tests/lib/Files/EtagTest.php | 2 | ||||
-rw-r--r-- | tests/lib/Files/FilesystemTest.php | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/Files/EtagTest.php b/tests/lib/Files/EtagTest.php index 43b92c12391..b9583a6ac7c 100644 --- a/tests/lib/Files/EtagTest.php +++ b/tests/lib/Files/EtagTest.php @@ -41,7 +41,7 @@ class EtagTest extends \Test\TestCase { \OC\Share\Share::registerBackend('folder', 'OCA\Files_Sharing\ShareBackend\Folder', 'file'); $config = \OC::$server->getConfig(); - $this->datadir = $config->getSystemValue('datadirectory'); + $this->datadir = $config->getSystemValueString('datadirectory'); $this->tmpDir = \OC::$server->getTempManager()->getTemporaryFolder(); $config->setSystemValue('datadirectory', $this->tmpDir); diff --git a/tests/lib/Files/FilesystemTest.php b/tests/lib/Files/FilesystemTest.php index 8f34860d85a..96fcab77474 100644 --- a/tests/lib/Files/FilesystemTest.php +++ b/tests/lib/Files/FilesystemTest.php @@ -347,7 +347,7 @@ class FilesystemTest extends \Test\TestCase { \OC\Files\Filesystem::initMountPoints($userId); } - + public function testNullUserThrows() { $this->expectException(\OC\User\NoUserException::class); @@ -427,7 +427,7 @@ class FilesystemTest extends \Test\TestCase { public function testMountDefaultCacheDir() { $userId = $this->getUniqueID('user_'); $config = \OC::$server->getConfig(); - $oldCachePath = $config->getSystemValue('cache_path', ''); + $oldCachePath = $config->getSystemValueString('cache_path', ''); // no cache path configured $config->setSystemValue('cache_path', ''); @@ -457,7 +457,7 @@ class FilesystemTest extends \Test\TestCase { $userId = $this->getUniqueID('user_'); $config = \OC::$server->getConfig(); - $oldCachePath = $config->getSystemValue('cache_path', ''); + $oldCachePath = $config->getSystemValueString('cache_path', ''); // set cache path to temp dir $cachePath = \OC::$server->getTempManager()->getTemporaryFolder() . '/extcache'; $config->setSystemValue('cache_path', $cachePath); |