summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/PageControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/controller/PageControllerTest.php')
-rw-r--r--tests/unit/controller/PageControllerTest.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/unit/controller/PageControllerTest.php b/tests/unit/controller/PageControllerTest.php
index 60ae8c66b..48af6860f 100644
--- a/tests/unit/controller/PageControllerTest.php
+++ b/tests/unit/controller/PageControllerTest.php
@@ -159,9 +159,13 @@ class PageControllerTest extends \PHPUnit_Framework_TestCase {
$result = $this->controller->manifest();
$this->assertEquals($this->configData['name'], $result['name']);
$this->assertEquals('web', $result['type']);
- $this->assertEquals($this->configData['description'], $result['description']);
+ $this->assertEquals(
+ $this->configData['description'], $result['description']
+ );
$this->assertEquals('de-DE', $result['default_locale']);
- $this->assertEquals($this->configData['homepage'], $result['developer']['url']);
+ $this->assertEquals(
+ $this->configData['homepage'], $result['developer']['url']
+ );
$this->assertEquals('john, test', $result['developer']['name']);
}