summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 18:32:00 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 18:32:00 +0200
commitb1e046dbf8f8d7cd1a76c50549b34c029dde1ad8 (patch)
tree3cd99857e5056ea01c8c56153d6b5b51e24fe7d9 /tests
parent66c73a96ac2dda076bcfe0dc0a1ca2a7e169149d (diff)
fix long line
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/controller/FolderControllerTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/controller/FolderControllerTest.php b/tests/unit/controller/FolderControllerTest.php
index 5a5daff3d..1fa915b11 100644
--- a/tests/unit/controller/FolderControllerTest.php
+++ b/tests/unit/controller/FolderControllerTest.php
@@ -183,7 +183,9 @@ class FolderControllerTest extends \PHPUnit_Framework_TestCase {
public function testDeleteDoesNotExist(){
$this->folderService->expects($this->once())
->method('markDeleted')
- ->will($this->throwException(new ServiceNotFoundException($this->msg)));
+ ->will(
+ $this->throwException(new ServiceNotFoundException($this->msg))
+ );
$response = $this->controller->delete(5);