summaryrefslogtreecommitdiffstats
path: root/tests/lib/share
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-04-19 15:13:31 +0200
committerRoeland Jago Douma <rullzer@owncloud.com>2016-04-19 15:13:31 +0200
commitdd7e0d13e55ba9a150237ac2f4d0ba03955a9855 (patch)
tree8803c16038640b243b2ff4d301092ad31eaba7e7 /tests/lib/share
parent7186975e35d03312f46b27d808a98f7bc6064078 (diff)
downloadnextcloud-server-dd7e0d13e55ba9a150237ac2f4d0ba03955a9855.tar.gz
nextcloud-server-dd7e0d13e55ba9a150237ac2f4d0ba03955a9855.zip
Move the group dummy backend to test
The dummy backend is only used for testing and should thus reside in tests.
Diffstat (limited to 'tests/lib/share')
-rw-r--r--tests/lib/share/share.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php
index 1965d80c580..a07e90effc3 100644
--- a/tests/lib/share/share.php
+++ b/tests/lib/share/share.php
@@ -63,7 +63,7 @@ class Test_Share extends \Test\TestCase {
\OC::$server->getUserManager()->createUser($this->groupAndUser, 'pass');
OC_User::setUserId($this->user1);
OC_Group::clearBackends();
- OC_Group::useBackend(new OC_Group_Dummy);
+ OC_Group::useBackend(new \Test\Util\Group\Dummy());
$this->group1 = $this->getUniqueID('group1_');
$this->group2 = $this->getUniqueID('group2_');
OC_Group::createGroup($this->group1);