Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-11-11 00:59:50 +0300
committerJoas Schilling <nickvergessen@gmx.de>2014-11-19 16:53:51 +0300
commitcb3a598cdb238f9ce74dce80ef9e59cdfc531a4f (patch)
tree2a3ec09e86f13885483286ba5f5213201eb4ee67 /tests/lib/largefilehelper.php
parent76ebd3a050cb3c84b958f071ec559e6bc9cbc847 (diff)
Make root tests extend the \Test\TestCase
Diffstat (limited to 'tests/lib/largefilehelper.php')
-rw-r--r--tests/lib/largefilehelper.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/largefilehelper.php b/tests/lib/largefilehelper.php
index 5db1f9c5a74..1267a8c5833 100644
--- a/tests/lib/largefilehelper.php
+++ b/tests/lib/largefilehelper.php
@@ -8,10 +8,10 @@
namespace Test;
-class LargeFileHelper extends \PHPUnit_Framework_TestCase {
+class LargeFileHelper extends TestCase {
protected $helper;
- public function setUp() {
+ protected function setUp() {
parent::setUp();
$this->helper = new \OC\LargeFileHelper;
}