diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-26 23:57:10 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-28 13:18:40 +0200 |
commit | eb69e89fa5b96c1c247be57e25a7cf87f7b29e17 (patch) | |
tree | a75b450e126917dd44fe7dc60787b721f1a01e71 /tests | |
parent | e9d590674d8da6500578db4d97abae760c8525da (diff) | |
download | nextcloud-server-eb69e89fa5b96c1c247be57e25a7cf87f7b29e17.tar.gz nextcloud-server-eb69e89fa5b96c1c247be57e25a7cf87f7b29e17.zip |
chore: Drop unused legacy `OC_Files`
It is replaced with the Sabre `ZipFolderPlugin` and apps should use the `OCP\AppFramework\Http\StreamResponse`.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/AutoLoaderTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/AutoLoaderTest.php b/tests/lib/AutoLoaderTest.php index 2aa8bc2a26a..72d4a2e94cf 100644 --- a/tests/lib/AutoLoaderTest.php +++ b/tests/lib/AutoLoaderTest.php @@ -20,8 +20,8 @@ class AutoLoaderTest extends TestCase { public function testLegacyPath(): void { $this->assertEquals([ - \OC::$SERVERROOT . '/lib/private/legacy/files.php', - ], $this->loader->findClass('OC_Files')); + \OC::$SERVERROOT . '/lib/private/legacy/json.php', + ], $this->loader->findClass('OC_JSON')); } public function testLoadTestTestCase(): void { |