From 4daedda35a3a8cffb283e47b37e66f5b0524cbd8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 2 Mar 2012 17:40:38 +0100 Subject: [PATCH] only test enabled apps --- tests/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.php b/tests/index.php index b5ae55808a..2e86366740 100644 --- a/tests/index.php +++ b/tests/index.php @@ -30,7 +30,7 @@ require_once 'simpletest/default_reporter.php'; loadTests(dirname(__FILE__)); //load app test cases -$apps=OC_App::getAllApps(); +$apps=OC_Appconfig::getApps(); foreach($apps as $app){ if(is_dir(OC::$SERVERROOT.'/apps/'.$app.'/tests')){ loadTests(OC::$SERVERROOT.'/apps/'.$app.'/tests');