From 08d2202abb66dd510d42f8a5a5f87e74b9f099d6 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Mon, 7 Sep 2015 16:06:53 +0100 Subject: Load all enabled apps in test bootstrap --- tests/bootstrap.php | 5 ++--- 1 file 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'); -- cgit v1.2.3