summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/UtilityApiControllerTest.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 18:19:23 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 18:19:23 +0200
commit66c73a96ac2dda076bcfe0dc0a1ca2a7e169149d (patch)
treedc0318fa459e4f313217ee38e4bc63524513d721 /tests/unit/controller/UtilityApiControllerTest.php
parentf5e64d35c05b14016eb4fffff7199386a97a9b43 (diff)
first try to set indention limit at 80 characters in php
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
+ );
}