diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-21 00:41:20 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-21 00:41:20 +0200 |
commit | 33db8a3089760947eec93149a2029164b676eae8 (patch) | |
tree | 0300b1d7319935a9df7e888f3b7739d8de406bc6 /tests/lib/appframework/controller | |
parent | 395deacc6760564544a76338023d9b0bf39e0bfe (diff) | |
download | nextcloud-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.php | 5 |
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 {}; |