diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-05-19 10:30:07 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-05-19 10:30:07 +0200 |
commit | e36a27d21c4746da2858eb98de8656ec74a449b1 (patch) | |
tree | d05b6635e197660b5864646f93766d0f8600621e /tests/lib/appframework/controller/ControllerTest.php | |
parent | ae7e14b2232039f25eb8b17a0e46c246f3c7c6eb (diff) | |
parent | f57407e73e2c3aa4daa3c1ac6c9778602187daad (diff) | |
download | nextcloud-server-e36a27d21c4746da2858eb98de8656ec74a449b1.tar.gz nextcloud-server-e36a27d21c4746da2858eb98de8656ec74a449b1.zip |
Merge pull request #24712 from owncloud/fix-test-namespaces
Fix test namespaces [a-e]
Diffstat (limited to 'tests/lib/appframework/controller/ControllerTest.php')
-rw-r--r-- | tests/lib/appframework/controller/ControllerTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/appframework/controller/ControllerTest.php b/tests/lib/appframework/controller/ControllerTest.php index 1493c0c3175..521799a46ce 100644 --- a/tests/lib/appframework/controller/ControllerTest.php +++ b/tests/lib/appframework/controller/ControllerTest.php @@ -22,9 +22,10 @@ */ -namespace OCP\AppFramework; +namespace Test\AppFramework\Controller; use OC\AppFramework\Http\Request; +use OCP\AppFramework\Controller; use OCP\AppFramework\Http\TemplateResponse; use OCP\AppFramework\Http\JSONResponse; use OCP\AppFramework\Http\DataResponse; |