summaryrefslogtreecommitdiffstats
path: root/tests/lib/group/dummy.php
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/group/dummy.php
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/group/dummy.php')
-rw-r--r--tests/lib/group/dummy.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/group/dummy.php b/tests/lib/group/dummy.php
index 6836f89d3fe..eaa299c39af 100644
--- a/tests/lib/group/dummy.php
+++ b/tests/lib/group/dummy.php
@@ -28,6 +28,6 @@
class Test_Group_Dummy extends Test_Group_Backend {
protected function setUp() {
parent::setUp();
- $this->backend=new OC_Group_Dummy();
+ $this->backend=new \Test\Util\Group\Dummy();
}
}