diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2015-01-07 00:52:18 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2015-01-07 00:52:18 +0100 |
commit | b9235e2a24ada2bf69fc23cd83405661bde7f0da (patch) | |
tree | f73ab7e9ca94e9a0a19d0ddbb9a82a7dc91c16b4 /apps/user_ldap/tests/access.php | |
parent | 64f0b055e67974141cf2e156d2b062f55768ce7d (diff) | |
download | nextcloud-server-b9235e2a24ada2bf69fc23cd83405661bde7f0da.tar.gz nextcloud-server-b9235e2a24ada2bf69fc23cd83405661bde7f0da.zip |
inject DB Connection to user manager
Diffstat (limited to 'apps/user_ldap/tests/access.php')
-rw-r--r-- | apps/user_ldap/tests/access.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/user_ldap/tests/access.php b/apps/user_ldap/tests/access.php index 85849229152..5c502f288eb 100644 --- a/apps/user_ldap/tests/access.php +++ b/apps/user_ldap/tests/access.php @@ -47,7 +47,8 @@ class Test_Access extends \Test\TestCase { $this->getMock('\OCA\user_ldap\lib\FilesystemHelper'), $this->getMock('\OCA\user_ldap\lib\LogWrapper'), $this->getMock('\OCP\IAvatarManager'), - $this->getMock('\OCP\Image'))); + $this->getMock('\OCP\Image'), + $this->getMock('\OCP\IDBConnection'))); return array($lw, $connector, $um); } |