aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming/tests/UtilTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/theming/tests/UtilTest.php')
-rw-r--r--apps/theming/tests/UtilTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/theming/tests/UtilTest.php b/apps/theming/tests/UtilTest.php
index 969d35f7d27..51cb76f9559 100644
--- a/apps/theming/tests/UtilTest.php
+++ b/apps/theming/tests/UtilTest.php
@@ -165,7 +165,7 @@ class UtilTest extends TestCase {
* @dataProvider dataGetAppImage
*/
public function testGetAppImage($app, $image, $expected) {
- if($app !== 'core') {
+ if ($app !== 'core') {
$this->appManager->expects($this->once())
->method('getAppPath')
->with($app)
@@ -238,5 +238,4 @@ class UtilTest extends TestCase {
->willReturn($folder);
$this->assertEquals($expected, $this->util->isBackgroundThemed());
}
-
}