diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-12-28 14:19:13 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-12-30 05:55:45 +0100 |
commit | c0c4443ffc6608ea2917a9c5bec1c0150a94b404 (patch) | |
tree | 9a12ec15ec2e2a76ebde403647936a8fa2494c9d /tests/lib/LegacyHelperTest.php | |
parent | b71c9205ef784b7aa55f5f51207f9ba49e077a2f (diff) | |
download | nextcloud-server-c0c4443ffc6608ea2917a9c5bec1c0150a94b404.tar.gz nextcloud-server-c0c4443ffc6608ea2917a9c5bec1c0150a94b404.zip |
Fixed tests
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'tests/lib/LegacyHelperTest.php')
-rw-r--r-- | tests/lib/LegacyHelperTest.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/lib/LegacyHelperTest.php b/tests/lib/LegacyHelperTest.php index f1e22ea600e..736c5bf7fad 100644 --- a/tests/lib/LegacyHelperTest.php +++ b/tests/lib/LegacyHelperTest.php @@ -12,6 +12,17 @@ use OC\Files\View; use OC_Helper; class LegacyHelperTest extends \Test\TestCase { + /** @var string */ + private $originalWebRoot; + + public function setUp() { + $this->originalWebRoot = \OC::$WEBROOT; + } + + public function tearDown() { + // Reset webRoot + \OC::$WEBROOT = $this->originalWebRoot; + } /** * @dataProvider humanFileSizeProvider |