Browse Source

Fix test failure introduced in https://github.com/nextcloud/server/pull/33819

Signed-off-by: Christopher Ng <chrng8@gmail.com>
tags/v25.0.0beta7
Christopher Ng 1 year ago
parent
commit
4de19e9f85
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      apps/provisioning_api/tests/Controller/UsersControllerTest.php

+ 6
- 0
apps/provisioning_api/tests/Controller/UsersControllerTest.php View File

@@ -267,6 +267,12 @@ class UsersControllerTest extends TestCase {
->method('isAdmin')
->with('adminUser')
->willReturn(true);
$l10n = $this->createMock(IL10N::class);
$this->l10nFactory
->expects($this->once())
->method('get')
->with('provisioning_api')
->willReturn($l10n);

$this->api->addUser('AlreadyExistingUser', 'password', '', '', []);
}

Loading…
Cancel
Save