summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/UtilityApiControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/controller/UtilityApiControllerTest.php')
-rw-r--r--tests/unit/controller/UtilityApiControllerTest.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/controller/UtilityApiControllerTest.php b/tests/unit/controller/UtilityApiControllerTest.php
index efff559d8..f4219fddf 100644
--- a/tests/unit/controller/UtilityApiControllerTest.php
+++ b/tests/unit/controller/UtilityApiControllerTest.php
@@ -36,8 +36,9 @@ class UtilityApiControllerTest extends \PHPUnit_Framework_TestCase {
'\OCA\News\Utility\Updater')
->disableOriginalConstructor()
->getMock();
- $this->newsAPI = new UtilityApiController($this->appName, $this->request,
- $this->updater, $this->settings);
+ $this->newsAPI = new UtilityApiController(
+ $this->appName, $this->request, $this->updater, $this->settings
+ );
}