Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-07-10 16:18:06 +0300
committerJoas Schilling <coding@schilljs.com>2019-07-25 17:39:45 +0300
commit944505fdf78c081d04fdaa04a2d41e31aa72e1dd (patch)
treed4d4c1283c3e48bf94c1326250482693920d93ad /tests
parentdb4826581c670f32068b1fa5f847e37f35859087 (diff)
Allow guests to read the display name when they joined a room
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/php/Controller/SignalingControllerTest.php1
-rw-r--r--tests/php/Signaling/BackendNotifierTest.php2
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/php/Controller/SignalingControllerTest.php b/tests/php/Controller/SignalingControllerTest.php
index c93ee8d09..49d67f8cf 100644
--- a/tests/php/Controller/SignalingControllerTest.php
+++ b/tests/php/Controller/SignalingControllerTest.php
@@ -700,6 +700,7 @@ class SignalingControllerTest extends \Test\TestCase {
$this->secureRandom,
$this->createMock(IUserManager::class),
$this->createMock(CommentsManager::class),
+ $this->createMock(TalkSession::class),
$dispatcher,
$this->timeFactory,
$this->createMock(IHasher::class),
diff --git a/tests/php/Signaling/BackendNotifierTest.php b/tests/php/Signaling/BackendNotifierTest.php
index 40050410e..6740c44a9 100644
--- a/tests/php/Signaling/BackendNotifierTest.php
+++ b/tests/php/Signaling/BackendNotifierTest.php
@@ -29,6 +29,7 @@ use OCA\Spreed\Manager;
use OCA\Spreed\Participant;
use OCA\Spreed\Room;
use OCA\Spreed\Signaling\BackendNotifier;
+use OCA\Spreed\TalkSession;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\Http\Client\IClientService;
use OCP\IGroupManager;
@@ -129,6 +130,7 @@ class BackendNotifierTest extends \Test\TestCase {
$this->secureRandom,
$this->createMock(IUserManager::class),
$this->createMock(CommentsManager::class),
+ $this->createMock(TalkSession::class),
$dispatcher,
$this->timeFactory,
$this->createMock(IHasher::class),