summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/FeedApiControllerTest.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/FeedApiControllerTest.php
parent934149587974bd27cc9bd32f1fdc177549626ef7 (diff)
remove dead code
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();
}