summaryrefslogtreecommitdiffstats
path: root/tests/lib/files/mapper.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/files/mapper.php')
-rw-r--r--tests/lib/files/mapper.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/lib/files/mapper.php b/tests/lib/files/mapper.php
index d513f3ce4b3..18161734b60 100644
--- a/tests/lib/files/mapper.php
+++ b/tests/lib/files/mapper.php
@@ -22,14 +22,15 @@
namespace Test\Files;
-class Mapper extends \PHPUnit_Framework_TestCase {
+class Mapper extends \Test\TestCase {
/**
* @var \OC\Files\Mapper
*/
private $mapper = null;
- public function setUp() {
+ protected function setUp() {
+ parent::setUp();
$this->mapper = new \OC\Files\Mapper('D:/');
}