Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
  • Loading branch information
solracsf authored Sep 20, 2024
1 parent cc0b521 commit cb810fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/lib/Share20/ManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4154,7 +4154,7 @@ public function testMoveShareLink(): void {

public function testMoveShareUserNotRecipient(): void {
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessage('Invalid recipient');
$this->expectExceptionMessage('Invalid share recipient');

$share = $this->manager->newShare();
$share->setShareType(IShare::TYPE_USER);
Expand All @@ -4181,7 +4181,7 @@ public function testMoveShareUser(): void {

public function testMoveShareGroupNotRecipient(): void {
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessage('Invalid recipient');
$this->expectExceptionMessage('Invalid share recipient');

$share = $this->manager->newShare();
$share->setShareType(IShare::TYPE_GROUP);
Expand Down

0 comments on commit cb810fe

Please sign in to comment.