diff options
Diffstat (limited to 'lib/autoloader.php')
-rw-r--r-- | lib/autoloader.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/autoloader.php b/lib/autoloader.php index 215da536e5b..73783603438 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -117,8 +117,6 @@ class Autoloader { // This File is considered public API, so we make sure that the class // can still be loaded, although the PSR-4 paths have not been loaded. $paths[] = \OC::$SERVERROOT . '/tests/lib/TestCase.php'; - } elseif (strpos($class, 'Test\\') === 0) { - $paths[] = \OC::$SERVERROOT . '/tests/lib/' . strtolower(str_replace('\\', '/', substr($class, 5)) . '.php'); } return $paths; } |