diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-12 16:31:35 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-25 16:04:58 +0200 |
commit | 387019a212224ffbd4300576b9c28e61d5e021a6 (patch) | |
tree | c164a3f58802407d8e35f5d07ef298942b15bffc /apps/user_ldap/tests/User/ManagerTest.php | |
parent | 7db6b487f5b2a49abaa1f233367f12ce4c99de89 (diff) | |
download | nextcloud-server-387019a212224ffbd4300576b9c28e61d5e021a6.tar.gz nextcloud-server-387019a212224ffbd4300576b9c28e61d5e021a6.zip |
Move FilesystemHelper to PSR-4
Diffstat (limited to 'apps/user_ldap/tests/User/ManagerTest.php')
-rw-r--r-- | apps/user_ldap/tests/User/ManagerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/tests/User/ManagerTest.php b/apps/user_ldap/tests/User/ManagerTest.php index 633cd0c876a..478cd2aca8c 100644 --- a/apps/user_ldap/tests/User/ManagerTest.php +++ b/apps/user_ldap/tests/User/ManagerTest.php @@ -39,7 +39,7 @@ class ManagerTest extends \Test\TestCase { private function getTestInstances() { $access = $this->getMock('\OCA\User_LDAP\User\IUserTools'); $config = $this->getMock('\OCP\IConfig'); - $filesys = $this->getMock('\OCA\user_ldap\lib\FilesystemHelper'); + $filesys = $this->getMock('\OCA\User_LDAP\FilesystemHelper'); $log = $this->getMock('\OCA\User_LDAP\LogWrapper'); $avaMgr = $this->getMock('\OCP\IAvatarManager'); $image = $this->getMock('\OCP\Image'); |