diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-10-26 14:44:15 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-10-26 16:05:28 +0100 |
commit | fd1fd5afa4712166cbb136d4df197bf7e37545af (patch) | |
tree | 7dcf7f64c5e3b409e5c5fc40681965a42a4d47b9 /apps/user_ldap/tests/User_LDAPTest.php | |
parent | 951887e922bfc47613f0cfda5e7798df2b4286d6 (diff) | |
download | nextcloud-server-fd1fd5afa4712166cbb136d4df197bf7e37545af.tar.gz nextcloud-server-fd1fd5afa4712166cbb136d4df197bf7e37545af.zip |
user share manager to determine share ownership
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/tests/User_LDAPTest.php')
-rw-r--r-- | apps/user_ldap/tests/User_LDAPTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/tests/User_LDAPTest.php b/apps/user_ldap/tests/User_LDAPTest.php index ca9ff841ec0..6840a4c6dac 100644 --- a/apps/user_ldap/tests/User_LDAPTest.php +++ b/apps/user_ldap/tests/User_LDAPTest.php @@ -1410,7 +1410,7 @@ class User_LDAPTest extends TestCase { ->with($this->isInstanceOf(AbstractMapping::class), $this->anything(), $uid, $uuid, true); $this->access->expects($this->any()) ->method('getUserMapper') - ->willReturn($this->createMock(AbstractMapping::class)); + ->willReturn($this->createMock(UserMapping::class)); $this->assertEquals($this->backend->createUser($uid, $pwd),true); } |