diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-09-08 13:02:12 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-09-08 13:02:12 +0200 |
commit | 75f939b8fed56503b652f2a8b836f8c82ead40ab (patch) | |
tree | 1e5946550ed2a54654513988ffef573ee4c24ba7 | |
parent | d044884cfa8d065c7d784dbc792a7228e0eed46f (diff) | |
parent | 08d2202abb66dd510d42f8a5a5f87e74b9f099d6 (diff) | |
download | nextcloud-server-75f939b8fed56503b652f2a8b836f8c82ead40ab.tar.gz nextcloud-server-75f939b8fed56503b652f2a8b836f8c82ead40ab.zip |
Merge pull request #18882 from owncloud/load-all-apps-tests
Load all enabled apps in test bootstrap
-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'); |