summaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorRoeland Douma <rullzer@users.noreply.github.com>2016-04-06 13:31:05 +0200
committerRoeland Douma <rullzer@users.noreply.github.com>2016-04-06 13:31:05 +0200
commit7ed271b16870cf31c9fa26e3d045181cd805d9b0 (patch)
tree1ebb63af2eed1732408f413587750f4ce554de42 /tests/lib
parente2ea289943b3ec26da9fa7d8332307a54a2c6790 (diff)
parent5a0c936f99668fe5db0ffef8c76384ae0fe7fe52 (diff)
downloadnextcloud-server-7ed271b16870cf31c9fa26e3d045181cd805d9b0.tar.gz
nextcloud-server-7ed271b16870cf31c9fa26e3d045181cd805d9b0.zip
Merge pull request #23820 from owncloud/move-settings-completely-to-psr4
Move OC/Settings completely to PSR-4
Diffstat (limited to 'tests/lib')
-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() {