summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/FeedApiControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/controller/FeedApiControllerTest.php')
-rw-r--r--tests/unit/controller/FeedApiControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/controller/FeedApiControllerTest.php b/tests/unit/controller/FeedApiControllerTest.php
index 54f7a4c0a..220e89ea9 100644
--- a/tests/unit/controller/FeedApiControllerTest.php
+++ b/tests/unit/controller/FeedApiControllerTest.php
@@ -492,7 +492,7 @@ class FeedApiControllerTest extends ControllerTestUtility {
->method('update')
->with($this->equalTo($feedId), $this->equalTo($userId));
- $response = $this->feedAPI->update();
+ $this->feedAPI->update();
}
@@ -505,7 +505,7 @@ class FeedApiControllerTest extends ControllerTestUtility {
->with($this->equalTo('Could not update feed ' . $this->msg),
$this->equalTo('debug'));
- $response = $this->feedAPI->update();
+ $this->feedAPI->update();
}