summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2016-04-06 11:13:15 +0200
committerLukas Reschke <lukas@owncloud.com>2016-04-06 11:34:53 +0200
commit5a0c936f99668fe5db0ffef8c76384ae0fe7fe52 (patch)
treec3a9e715e8f299c0ce5c4ccec05d723fd2d6a803 /tests
parentc12bb839e197990db86f0062fa6b7ec54aff5121 (diff)
downloadnextcloud-server-5a0c936f99668fe5db0ffef8c76384ae0fe7fe52.tar.gz
nextcloud-server-5a0c936f99668fe5db0ffef8c76384ae0fe7fe52.zip
Remove OC/Settings from old autoloader
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/autoloader.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/lib/autoloader.php b/tests/lib/autoloader.php
index 6443d87a2e5..fafdefd01be 100644
--- a/tests/lib/autoloader.php
+++ b/tests/lib/autoloader.php
@@ -83,9 +83,7 @@ class AutoLoader extends TestCase {
}
public function testLoadCoreNamespaceSettings() {
- $this->assertEquals([
- \OC::$SERVERROOT . '/settings/foo/bar.php',
- ], $this->loader->findClass('OC\Settings\Foo\Bar'));
+ $this->assertEquals([], $this->loader->findClass('OC\Settings\Foo\Bar'));
}
public function testLoadCoreNamespaceRepair() {