diff options
author | Roeland Douma <rullzer@users.noreply.github.com> | 2016-04-06 13:31:44 +0200 |
---|---|---|
committer | Roeland Douma <rullzer@users.noreply.github.com> | 2016-04-06 13:31:44 +0200 |
commit | 93b1768eb78e32539bafdc91af3d397f426b46ba (patch) | |
tree | 5df3adc6978daf7d338ac3bc1285655f879c8ae1 /tests/lib/autoloader.php | |
parent | 7ed271b16870cf31c9fa26e3d045181cd805d9b0 (diff) | |
parent | c952adabb553ef1ee0a3c8ff6125e0048f750428 (diff) | |
download | nextcloud-server-93b1768eb78e32539bafdc91af3d397f426b46ba.tar.gz nextcloud-server-93b1768eb78e32539bafdc91af3d397f426b46ba.zip |
Merge pull request #23819 from owncloud/move-core-completely-to-psr4
Move OC/Core completely to PSR-4
Diffstat (limited to 'tests/lib/autoloader.php')
-rw-r--r-- | tests/lib/autoloader.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/lib/autoloader.php b/tests/lib/autoloader.php index fafdefd01be..f93b7c33cab 100644 --- a/tests/lib/autoloader.php +++ b/tests/lib/autoloader.php @@ -77,9 +77,7 @@ class AutoLoader extends TestCase { } public function testLoadCoreNamespaceCore() { - $this->assertEquals([ - \OC::$SERVERROOT . '/core/foo/bar.php', - ], $this->loader->findClass('OC\Core\Foo\Bar')); + $this->assertEquals([], $this->loader->findClass('OC\Core\Foo\Bar')); } public function testLoadCoreNamespaceSettings() { |