summaryrefslogtreecommitdiffstats
path: root/tests/lib/user.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-09-22 00:56:36 +0200
committerLukas Reschke <lukas@owncloud.com>2015-09-22 11:01:11 +0200
commit36ce254ffd5ace8357fd777c8af42a98df01ad29 (patch)
tree9fccdc4c8ff13c3c6b2d86797e5e3401734b021a /tests/lib/user.php
parent67231ed9a75eafe5b417e4525e3d80b1a3f8826b (diff)
downloadnextcloud-server-36ce254ffd5ace8357fd777c8af42a98df01ad29.tar.gz
nextcloud-server-36ce254ffd5ace8357fd777c8af42a98df01ad29.zip
Move dummy backend to Tests namespace
Diffstat (limited to 'tests/lib/user.php')
-rw-r--r--tests/lib/user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/user.php b/tests/lib/user.php
index cb0c661b2a4..3c068be2826 100644
--- a/tests/lib/user.php
+++ b/tests/lib/user.php
@@ -18,7 +18,7 @@ class User extends TestCase {
protected function setUp(){
parent::setUp();
- $this->backend = $this->getMock('\OC_User_Dummy');
+ $this->backend = $this->getMock('\Test\Util\User\Dummy');
$manager = \OC_User::getManager();
$manager->registerBackend($this->backend);
}