From cb81d8d415c36e5843549a746cb8b5972733e7d4 Mon Sep 17 00:00:00 2001 From: Anna Larch Date: Wed, 11 Dec 2024 14:50:17 +0100 Subject: [PATCH] fixup! fixup! fix(conversations): fix password enforcement logic error --- tests/php/Service/RoomServiceTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/php/Service/RoomServiceTest.php b/tests/php/Service/RoomServiceTest.php index 82ed7bf11f3..46764217719 100644 --- a/tests/php/Service/RoomServiceTest.php +++ b/tests/php/Service/RoomServiceTest.php @@ -280,7 +280,7 @@ public function testCreateConversation(int $type, string $name, string $ownerId, ->method('addUsers'); } - if($password !== '') { + if ($password !== '') { $this->hasher->expects(self::once()) ->method('hash') ->willReturn($password);