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:
authorJoas Schilling <nickvergessen@owncloud.com>2016-05-18 19:40:34 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2016-05-18 19:57:45 +0300
commit9eade36ae5ac8d0fd9e002c78494f3ad19f919ab (patch)
treeb0f8d8bd374f22f5cfde35bcdfc87cf6b1c29262 /tests/lib/appframework/controller/ApiControllerTest.php
parent765782445a24fb1b239f2a3cd5c7b239ae4f6455 (diff)
Fix namespaces in AppFramework tests
Diffstat (limited to 'tests/lib/appframework/controller/ApiControllerTest.php')
-rw-r--r--tests/lib/appframework/controller/ApiControllerTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/appframework/controller/ApiControllerTest.php b/tests/lib/appframework/controller/ApiControllerTest.php
index 137e5950f67..783eecf93e5 100644
--- a/tests/lib/appframework/controller/ApiControllerTest.php
+++ b/tests/lib/appframework/controller/ApiControllerTest.php
@@ -22,9 +22,10 @@
*/
-namespace OCP\AppFramework;
+namespace Test\AppFramework\Controller;
use OC\AppFramework\Http\Request;
+use OCP\AppFramework\ApiController;
class ChildApiController extends ApiController {};