summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-08-05 16:08:53 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-08-05 16:08:53 +0200
commitc67335d9f8df4f5d7742ccfaced7434ef5be9f01 (patch)
tree585f77c1095b164be6e3aef35e97b91a0ae91c22 /tests
parentfca036611137f29ab003a6a12ca04196ba09d1c2 (diff)
return proper response for update method
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/external/FeedAPITest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/external/FeedAPITest.php b/tests/unit/external/FeedAPITest.php
index 670f5f942..2963125b2 100644
--- a/tests/unit/external/FeedAPITest.php
+++ b/tests/unit/external/FeedAPITest.php
@@ -486,7 +486,8 @@ class FeedAPITest extends ControllerTestUtility {
->method('update')
->with($this->equalTo($feedId), $this->equalTo($userId));
- $this->feedAPI->update();
+ $response = $this->feedAPI->update();
+ $this->assertTrue($response instanceof JSONResponse);
}