aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/appframework/controller
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-08-21 00:41:20 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-21 00:41:20 +0200
commit33db8a3089760947eec93149a2029164b676eae8 (patch)
tree0300b1d7319935a9df7e888f3b7739d8de406bc6 /tests/lib/appframework/controller
parent395deacc6760564544a76338023d9b0bf39e0bfe (diff)
downloadnextcloud-server-33db8a3089760947eec93149a2029164b676eae8.tar.gz
nextcloud-server-33db8a3089760947eec93149a2029164b676eae8.zip
kill superfluent classloader from tests - this approach might be of interest within the apps
Diffstat (limited to 'tests/lib/appframework/controller')
-rw-r--r--tests/lib/appframework/controller/ControllerTest.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/lib/appframework/controller/ControllerTest.php b/tests/lib/appframework/controller/ControllerTest.php
index d8357c2a685..246371d249c 100644
--- a/tests/lib/appframework/controller/ControllerTest.php
+++ b/tests/lib/appframework/controller/ControllerTest.php
@@ -25,12 +25,11 @@
namespace Test\AppFramework\Controller;
use OC\AppFramework\Http\Request;
-use OC\AppFramework\Http\JSONResponse;
-use OC\AppFramework\Http\TemplateResponse;
use OC\AppFramework\Controller\Controller;
+use OCP\AppFramework\Http\TemplateResponse;
-require_once(__DIR__ . "/../classloader.php");
+//require_once __DIR__ . "/../classloader.php";
class ChildController extends Controller {};