summaryrefslogtreecommitdiffstats
path: root/tests/lib/share/share.php
diff options
context:
space:
mode:
authorThomas Müller <DeepDiver1975@users.noreply.github.com>2016-04-20 11:55:00 +0200
committerThomas Müller <DeepDiver1975@users.noreply.github.com>2016-04-20 11:55:00 +0200
commitaa33ab0c03c1e26dfb866b23c68279ffd47fd6f0 (patch)
tree480dc4d392cba2c19d4c24330535509712b479e1 /tests/lib/share/share.php
parenta6676f31ec3360b5ec95ed96fe4c53ba78e7ce0b (diff)
parentdd7e0d13e55ba9a150237ac2f4d0ba03955a9855 (diff)
downloadnextcloud-server-aa33ab0c03c1e26dfb866b23c68279ffd47fd6f0.tar.gz
nextcloud-server-aa33ab0c03c1e26dfb866b23c68279ffd47fd6f0.zip
Merge pull request #24094 from owncloud/move_dummy_group_backend_to_test
Move the group dummy backend to test
Diffstat (limited to 'tests/lib/share/share.php')
-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);