summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
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);