diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-05-17 10:55:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-17 10:55:09 +0200 |
commit | f47c15f61e39b51fe07e1e971f41245ff48d10b6 (patch) | |
tree | cfef67a074a4b5b34e58fbeff7a63ad7e3c81115 /tests/lib/Files/FilesystemTest.php | |
parent | e4e71c073dbc8c17f74e6be094027d140bc90b2c (diff) | |
parent | 494a07932158d7ee7f36a2793622d1ed11d06bd7 (diff) | |
download | nextcloud-server-f47c15f61e39b51fe07e1e971f41245ff48d10b6.tar.gz nextcloud-server-f47c15f61e39b51fe07e1e971f41245ff48d10b6.zip |
Merge pull request #52912 from nextcloud/chore/remove-deprecated-oc-helper
chore!: remove legacy functions from `OC_Helper` deprecated before v10
Diffstat (limited to 'tests/lib/Files/FilesystemTest.php')
-rw-r--r-- | tests/lib/Files/FilesystemTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/Files/FilesystemTest.php b/tests/lib/Files/FilesystemTest.php index 4a3543474a1..966f6f34cee 100644 --- a/tests/lib/Files/FilesystemTest.php +++ b/tests/lib/Files/FilesystemTest.php @@ -10,6 +10,7 @@ namespace Test\Files; use OC\Files\Mount\MountPoint; use OC\Files\Storage\Temporary; use OC\User\NoUserException; +use OCP\Files; use OCP\Files\Config\IMountProvider; use OCP\Files\Storage\IStorageFactory; use OCP\IUser; @@ -74,7 +75,7 @@ class FilesystemTest extends \Test\TestCase { protected function tearDown(): void { foreach ($this->tmpDirs as $dir) { - \OC_Helper::rmdirr($dir); + Files::rmdirr($dir); } $this->logout(); |