From e02fad1731fc4daa3948d02585530096d9a8ee9c Mon Sep 17 00:00:00 2001 From: nathangray Date: Mon, 21 Sep 2020 12:24:13 -0600 Subject: [PATCH] Some more test work - Fix filesystem mountpoint, should have gone into home for access restrictions. Still fails though --- api/tests/Vfs/Filesystem/StreamWrapperTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/tests/Vfs/Filesystem/StreamWrapperTest.php b/api/tests/Vfs/Filesystem/StreamWrapperTest.php index cdcc17cc72..bd65b1b127 100644 --- a/api/tests/Vfs/Filesystem/StreamWrapperTest.php +++ b/api/tests/Vfs/Filesystem/StreamWrapperTest.php @@ -19,7 +19,7 @@ use EGroupware\Api\Vfs; class StreamWrapperTest extends Vfs\StreamWrapperBase { - public static $mountpoint = '/test/filesystem'; + public static $mountpoint = '/home/demo/filesystem'; protected function setUp() : void { @@ -33,7 +33,7 @@ class StreamWrapperTest extends Vfs\StreamWrapperBase parent::tearDown(); } - protected function mount(): void + protected function mount(): void { $this->mountFilesystem(static::$mountpoint); }