summaryrefslogtreecommitdiffstats
path: root/tests/unit/bl/FeedBlTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/bl/FeedBlTest.php')
-rw-r--r--tests/unit/bl/FeedBlTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/bl/FeedBlTest.php b/tests/unit/bl/FeedBlTest.php
index 0fadf2c24..a5ce1c624 100644
--- a/tests/unit/bl/FeedBlTest.php
+++ b/tests/unit/bl/FeedBlTest.php
@@ -64,13 +64,13 @@ class FeedBlTest extends \OCA\AppFramework\Utility\TestUtility {
}
- public function testFindAllFromUser(){
+ public function testFindAll(){
$this->mapper->expects($this->once())
->method('findAllFromUser')
->with($this->equalTo($this->user))
->will($this->returnValue($this->response));
- $result = $this->bl->findAllFromUser($this->user);
+ $result = $this->bl->findAll($this->user);
$this->assertEquals($this->response, $result);
}