Skip to content

Commit

Permalink
fixup! fixup! fix(conversations): fix password enforcement logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
miaulalala committed Dec 11, 2024
1 parent 5ab50ed commit cb81d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/php/Service/RoomServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit cb81d8d

Please sign in to comment.