summaryrefslogtreecommitdiffstats
path: root/tests/php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-06-10 16:14:43 +0200
committerJoas Schilling <coding@schilljs.com>2022-06-29 10:36:07 +0200
commit52cc89975c88a1f1e3ea2af8b4ca2b165df0b6bb (patch)
tree30667f96f30a43b47a4872796052214f2e3f5225 /tests/php
parent2c3d71673b3ebccc9cbf008a0b86015442b4257c (diff)
Implement password policy checker
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/php')
-rw-r--r--tests/php/Signaling/BackendNotifierTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/php/Signaling/BackendNotifierTest.php b/tests/php/Signaling/BackendNotifierTest.php
index 7ba8c4e48..051188a53 100644
--- a/tests/php/Signaling/BackendNotifierTest.php
+++ b/tests/php/Signaling/BackendNotifierTest.php
@@ -462,7 +462,7 @@ class BackendNotifierTest extends TestCase {
public function testRoomPasswordChanged() {
$room = $this->manager->createRoom(Room::TYPE_PUBLIC);
- $room->setPassword('password');
+ $this->roomService->setPassword($room, 'password');
$this->assertMessageWasSent($room, [
'type' => 'update',