diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-05-04 08:34:39 +0200 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-05-10 19:53:36 +0200 |
commit | 9e1d9871a8f45faa1d7dbbb42046bd0919a88a5d (patch) | |
tree | a8c5792cd7a371dc3b79d81f550b37d6299b4fb8 /tests/settings/controller/userscontrollertest.php | |
parent | 9504500e5fe80094c6b98393c05b9360590e0b48 (diff) | |
download | nextcloud-server-9e1d9871a8f45faa1d7dbbb42046bd0919a88a5d.tar.gz nextcloud-server-9e1d9871a8f45faa1d7dbbb42046bd0919a88a5d.zip |
Move OC_User_Database to \OC\User\Database
Diffstat (limited to 'tests/settings/controller/userscontrollertest.php')
-rw-r--r-- | tests/settings/controller/userscontrollertest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/settings/controller/userscontrollertest.php b/tests/settings/controller/userscontrollertest.php index 6f07f34ba8d..2a2b53d8ff8 100644 --- a/tests/settings/controller/userscontrollertest.php +++ b/tests/settings/controller/userscontrollertest.php @@ -668,7 +668,7 @@ class UsersControllerTest extends \Test\TestCase { $this->container['UserManager'] ->expects($this->once()) ->method('getBackends') - ->will($this->returnValue([new \Test\Util\User\Dummy(), new \OC_User_Database()])); + ->will($this->returnValue([new \Test\Util\User\Dummy(), new \OC\User\Database()])); $this->container['UserManager'] ->expects($this->once()) ->method('clearBackends'); @@ -716,7 +716,7 @@ class UsersControllerTest extends \Test\TestCase { $this->container['UserManager'] ->expects($this->once()) ->method('getBackends') - ->will($this->returnValue([new \Test\Util\User\Dummy(), new \OC_User_Database()])); + ->will($this->returnValue([new \Test\Util\User\Dummy(), new \OC\User\Database()])); $this->container['UserManager'] ->expects($this->once()) ->method('search') |