diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-30 17:20:40 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-30 17:20:40 +0100 |
commit | f776bcd4a0e58a8803ae4bf922bb278f6a5c5203 (patch) | |
tree | de248013ff131094a6ff91399ae71b17966a9cb6 /apps/files_sharing/tests/helper.php | |
parent | 90e523ead09436c54993ea527a1eec3faad7a0bd (diff) | |
download | nextcloud-server-f776bcd4a0e58a8803ae4bf922bb278f6a5c5203.tar.gz nextcloud-server-f776bcd4a0e58a8803ae4bf922bb278f6a5c5203.zip |
remove unnecessary require calls - the ownCloud class loader is supposed to take care of this
Diffstat (limited to 'apps/files_sharing/tests/helper.php')
-rw-r--r-- | apps/files_sharing/tests/helper.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files_sharing/tests/helper.php b/apps/files_sharing/tests/helper.php index 6169a9f5094..1a27739ec34 100644 --- a/apps/files_sharing/tests/helper.php +++ b/apps/files_sharing/tests/helper.php @@ -1,4 +1,6 @@ <?php +use OCA\Files_sharing\Tests\TestCase; + /** * ownCloud * @@ -19,9 +21,8 @@ * License along with this library. If not, see <http://www.gnu.org/licenses/>. * */ -require_once __DIR__ . '/base.php'; -class Test_Files_Sharing_Helper extends Test_Files_Sharing_Base { +class Test_Files_Sharing_Helper extends TestCase { /** * test set and get share folder |