diff options
author | Bernhard Posselt <Raydiation@users.noreply.github.com> | 2014-05-11 16:54:34 +0200 |
---|---|---|
committer | Bernhard Posselt <Raydiation@users.noreply.github.com> | 2014-05-11 16:54:34 +0200 |
commit | a252f59cd436d2c005755955bc93ab44544df766 (patch) | |
tree | 75e0e94cf98c70e9941d8856520e8ac63b670230 /tests/lib/appframework/controller/ControllerTest.php | |
parent | b6d76e9985105a245daf63f60b47e82df283019d (diff) | |
parent | e05192a23d11867a9860ac6e38e372e21919a861 (diff) | |
download | nextcloud-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.php | 4 |
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')); } + } |