diff options
author | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-11-05 12:04:56 +0100 |
---|---|---|
committer | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-11-05 12:04:56 +0100 |
commit | 91a23bfa9c9b3d7dd5f564910ad99be2316c15e0 (patch) | |
tree | 874597f69ef7e512ec017e4fb371722077a7e03f /tests/lib | |
parent | c8f55e7f87505d0f27df0d2115697d8456c455a1 (diff) | |
download | nextcloud-server-91a23bfa9c9b3d7dd5f564910ad99be2316c15e0.tar.gz nextcloud-server-91a23bfa9c9b3d7dd5f564910ad99be2316c15e0.zip |
fix typo in content type
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/appframework/http/JSONResponseTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/appframework/http/JSONResponseTest.php b/tests/lib/appframework/http/JSONResponseTest.php index f7c89a9d2e1..06cd3410a69 100644 --- a/tests/lib/appframework/http/JSONResponseTest.php +++ b/tests/lib/appframework/http/JSONResponseTest.php @@ -44,7 +44,7 @@ class JSONResponseTest extends \PHPUnit_Framework_TestCase { public function testHeader() { $headers = $this->json->getHeaders(); - $this->assertEquals('application/json; charset=utf-8', $headers['Content-type']); + $this->assertEquals('application/json; charset=utf-8', $headers['Content-Type']); } |