summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/ItemControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/controller/ItemControllerTest.php')
-rw-r--r--tests/unit/controller/ItemControllerTest.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/unit/controller/ItemControllerTest.php b/tests/unit/controller/ItemControllerTest.php
index 20876555a..15701bd6d 100644
--- a/tests/unit/controller/ItemControllerTest.php
+++ b/tests/unit/controller/ItemControllerTest.php
@@ -123,8 +123,7 @@ class ItemControllerTest extends ControllerTestUtility {
->method('read')
->with($url['itemId'], true, $this->user);
-
- $result = $this->controller->read();
+ $this->controller->read();
}
@@ -198,7 +197,7 @@ class ItemControllerTest extends ControllerTestUtility {
$this->equalTo(true),
$this->equalTo($this->user));
- $response = $this->controller->star();
+ $this->controller->star();
}
@@ -237,7 +236,7 @@ class ItemControllerTest extends ControllerTestUtility {
$this->equalTo(false),
$this->equalTo($this->user));
- $response = $this->controller->unstar();
+ $this->controller->unstar();
}