Merge pull request #19029 from owncloud/allow-tests-folder-in-autoloader
Allow /tests folder in autoloader by default
This commit is contained in:
commit
1d315512ea
|
@ -528,7 +528,8 @@ class OC {
|
|||
OC::$SERVERROOT . '/settings',
|
||||
OC::$SERVERROOT . '/ocs',
|
||||
OC::$SERVERROOT . '/ocs-provider',
|
||||
OC::$SERVERROOT . '/3rdparty'
|
||||
OC::$SERVERROOT . '/3rdparty',
|
||||
OC::$SERVERROOT . '/tests',
|
||||
]);
|
||||
spl_autoload_register(array(self::$loader, 'load'));
|
||||
$loaderEnd = microtime(true);
|
||||
|
|
Loading…
Reference in New Issue