Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
  • Loading branch information
julien-nc committed Feb 18, 2025
1 parent 76c8b79 commit 84faf55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/Service/ProvisioningServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public function testProvisionUserAutoProvisioning(): void {
->method('get')
->willReturn($user);

$backendUser->expects(self::once())
$user->expects(self::once())
->method('setDisplayName')
->with($name);
$user->expects(self::once())
Expand Down Expand Up @@ -225,7 +225,7 @@ public function testProvisionUserInvalidProperties(): void {
->method('get')
->willReturn($user);

$backendUser->expects(self::once())
$user->expects(self::once())
->method('setDisplayName')
->with($name);
$user->expects(self::once())
Expand Down Expand Up @@ -257,7 +257,7 @@ public function testProvisionUserInvalidProperties(): void {
->method('getProperty')
->with('twitter')
->willReturn($property);


$this->accountManager->expects(self::once())
->method('getAccount')
Expand Down

0 comments on commit 84faf55

Please sign in to comment.