瀏覽代碼

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 年之前
父節點
當前提交
4de19e9f85
共有 1 個檔案被更改,包括 6 行新增0 行删除
  1. 6
    0
      apps/provisioning_api/tests/Controller/UsersControllerTest.php

+ 6
- 0
apps/provisioning_api/tests/Controller/UsersControllerTest.php 查看文件

@@ -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…
取消
儲存