Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin McCorkell <rmccorkell@owncloud.com>2015-09-07 18:06:53 +0300
committerRobin McCorkell <rmccorkell@owncloud.com>2015-09-07 18:06:53 +0300
commit08d2202abb66dd510d42f8a5a5f87e74b9f099d6 (patch)
treeb09fbed1a181eb72306ca17a8b49140ed4367e81 /tests/bootstrap.php
parentf3e6e0121d8a86cf7a5782a2cc06295da221c56c (diff)
Load all enabled apps in test bootstrap
Diffstat (limited to 'tests/bootstrap.php')
-rw-r--r--tests/bootstrap.php5
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');