summaryrefslogtreecommitdiffstats
path: root/tests/php
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2020-12-01 17:32:41 +0100
committerVincent Petry <vincent@nextcloud.com>2020-12-11 18:15:47 +0100
commit9646678ec877b006e784cc8e81c9778f15b11332 (patch)
treecff82357b992ee40e04579e509170f1160cf8c3d /tests/php
parent17971cd34a6ecb0cdf4e926e41414f13a2bd4c41 (diff)
Added search provider for listed conversations
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'tests/php')
-rw-r--r--tests/php/Controller/SignalingControllerTest.php1
-rw-r--r--tests/php/Signaling/BackendNotifierTest.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/php/Controller/SignalingControllerTest.php b/tests/php/Controller/SignalingControllerTest.php
index b99e10ef1..4f3644e14 100644
--- a/tests/php/Controller/SignalingControllerTest.php
+++ b/tests/php/Controller/SignalingControllerTest.php
@@ -894,6 +894,7 @@ class SignalingControllerTest extends \Test\TestCase {
$participantService,
$this->secureRandom,
$this->createMock(IUserManager::class),
+ $this->createMock(IGroupManager::class),
$this->createMock(CommentsManager::class),
$this->createMock(TalkSession::class),
$dispatcher,
diff --git a/tests/php/Signaling/BackendNotifierTest.php b/tests/php/Signaling/BackendNotifierTest.php
index d6d347665..0468352b6 100644
--- a/tests/php/Signaling/BackendNotifierTest.php
+++ b/tests/php/Signaling/BackendNotifierTest.php
@@ -146,6 +146,7 @@ class BackendNotifierTest extends \Test\TestCase {
$this->participantService,
$this->secureRandom,
$this->createMock(IUserManager::class),
+ $groupManager,
$this->createMock(CommentsManager::class),
$this->createMock(TalkSession::class),
$this->dispatcher,