summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/FolderControllerTest.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-13 00:01:58 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-13 00:01:58 +0200
commit2d4b74884bf39bed40729d04cfa2d55e8683440d (patch)
treeea797d34805758065cb7e8011fe290e6528a9aa3 /tests/unit/controller/FolderControllerTest.php
parent934149587974bd27cc9bd32f1fdc177549626ef7 (diff)
remove dead code
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();
}