summaryrefslogtreecommitdiffstats
path: root/tests/unit/service/ServiceTest.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/service/ServiceTest.php
parentf5e64d35c05b14016eb4fffff7199386a97a9b43 (diff)
first try to set indention limit at 80 characters in php
Diffstat (limited to 'tests/unit/service/ServiceTest.php')
-rw-r--r--tests/unit/service/ServiceTest.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/unit/service/ServiceTest.php b/tests/unit/service/ServiceTest.php
index 473141cd3..07f2d9452 100644
--- a/tests/unit/service/ServiceTest.php
+++ b/tests/unit/service/ServiceTest.php
@@ -75,7 +75,9 @@ class ServiceTest extends \PHPUnit_Framework_TestCase {
->method('find')
->will($this->throwException($ex));
- $this->setExpectedException('\OCA\News\Service\ServiceNotFoundException');
+ $this->setExpectedException(
+ '\OCA\News\Service\ServiceNotFoundException'
+ );
$this->newsService->find(1, '');
}
@@ -87,7 +89,9 @@ class ServiceTest extends \PHPUnit_Framework_TestCase {
->method('find')
->will($this->throwException($ex));
- $this->setExpectedException('\OCA\News\Service\ServiceNotFoundException');
+ $this->setExpectedException(
+ '\OCA\News\Service\ServiceNotFoundException'
+ );
$this->newsService->find(1, '');
}