diff options
Diffstat (limited to 'tests/bootstrap.php')
-rw-r--r-- | tests/bootstrap.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 8bca05b1a18..86bedc3f325 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -10,9 +10,8 @@ require_once __DIR__ . '/../lib/base.php'; \OC::$loader->addValidRoot(OC::$SERVERROOT . '/tests'); -// load minimum set of apps -OC_App::loadApps(array('authentication')); -OC_App::loadApps(array('filesystem', 'logging')); +// load all enabled apps +\OC_App::loadApps(); if (!class_exists('PHPUnit_Framework_TestCase')) { require_once('PHPUnit/Autoload.php'); |