aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/appframework/controller/ControllerTest.php
diff options
context:
space:
mode:
authorBernhard Posselt <Raydiation@users.noreply.github.com>2014-05-11 16:54:34 +0200
committerBernhard Posselt <Raydiation@users.noreply.github.com>2014-05-11 16:54:34 +0200
commita252f59cd436d2c005755955bc93ab44544df766 (patch)
tree75e0e94cf98c70e9941d8856520e8ac63b670230 /tests/lib/appframework/controller/ControllerTest.php
parentb6d76e9985105a245daf63f60b47e82df283019d (diff)
parente05192a23d11867a9860ac6e38e372e21919a861 (diff)
downloadnextcloud-server-a252f59cd436d2c005755955bc93ab44544df766.tar.gz
nextcloud-server-a252f59cd436d2c005755955bc93ab44544df766.zip
Merge pull request #8504 from owncloud/cors-middleware
Add cors middleware
Diffstat (limited to 'tests/lib/appframework/controller/ControllerTest.php')
-rw-r--r--tests/lib/appframework/controller/ControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/appframework/controller/ControllerTest.php b/tests/lib/appframework/controller/ControllerTest.php
index f17d5f24aa5..b6c83125da1 100644
--- a/tests/lib/appframework/controller/ControllerTest.php
+++ b/tests/lib/appframework/controller/ControllerTest.php
@@ -22,10 +22,9 @@
*/
-namespace Test\AppFramework\Controller;
+namespace OCP\AppFramework;
use OC\AppFramework\Http\Request;
-use OCP\AppFramework\Controller;
use OCP\AppFramework\Http\TemplateResponse;
@@ -129,4 +128,5 @@ class ControllerTest extends \PHPUnit_Framework_TestCase {
$this->assertEquals('daheim', $this->controller->env('PATH'));
}
+
}