summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/FolderControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/controller/FolderControllerTest.php')
-rw-r--r--tests/unit/controller/FolderControllerTest.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/unit/controller/FolderControllerTest.php b/tests/unit/controller/FolderControllerTest.php
index 50c547f9a..44dc6e14c 100644
--- a/tests/unit/controller/FolderControllerTest.php
+++ b/tests/unit/controller/FolderControllerTest.php
@@ -147,7 +147,7 @@ class FolderControllerTest extends ControllerTestUtility {
->with($this->equalTo($url['folderId']),
$this->equalTo(true), $this->equalTo($this->user));
- $response = $this->controller->open();
+ $this->controller->open();
}
@@ -178,7 +178,7 @@ class FolderControllerTest extends ControllerTestUtility {
->with($this->equalTo($url['folderId']),
$this->equalTo(false), $this->equalTo($this->user));
- $response = $this->controller->collapse();
+ $this->controller->collapse();
}
@@ -267,8 +267,7 @@ class FolderControllerTest extends ControllerTestUtility {
->with($this->equalTo($url['folderId']),
$this->equalTo($this->user));
- $response = $this->controller->delete();
-
+ $this->controller->delete();
}
@@ -393,8 +392,7 @@ class FolderControllerTest extends ControllerTestUtility {
->with($this->equalTo($url['folderId']),
$this->equalTo($this->user));
- $response = $this->controller->restore();
-
+ $this->controller->restore();
}