diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-04-19 15:13:31 +0200 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-04-19 15:13:31 +0200 |
commit | dd7e0d13e55ba9a150237ac2f4d0ba03955a9855 (patch) | |
tree | 8803c16038640b243b2ff4d301092ad31eaba7e7 /apps | |
parent | 7186975e35d03312f46b27d808a98f7bc6064078 (diff) | |
download | nextcloud-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 'apps')
-rw-r--r-- | apps/files_sharing/tests/testcase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/tests/testcase.php b/apps/files_sharing/tests/testcase.php index ce0a8beeec8..3c291f4167c 100644 --- a/apps/files_sharing/tests/testcase.php +++ b/apps/files_sharing/tests/testcase.php @@ -82,7 +82,7 @@ abstract class TestCase extends \Test\TestCase { $backend->createUser(self::TEST_FILES_SHARING_API_USER4, self::TEST_FILES_SHARING_API_USER4); // create group - $groupBackend = new \OC_Group_Dummy(); + $groupBackend = new \Test\Util\Group\Dummy(); $groupBackend->createGroup(self::TEST_FILES_SHARING_API_GROUP1); $groupBackend->createGroup('group'); $groupBackend->createGroup('group1'); |