From 7ae230356fb5b2e678cd67bacd8068ef9979eff0 Mon Sep 17 00:00:00 2001 From: nathangray Date: Wed, 7 Oct 2020 09:22:09 -0600 Subject: [PATCH] Don't remove /apps when cleaning up --- api/tests/Vfs/SharingBase.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/tests/Vfs/SharingBase.php b/api/tests/Vfs/SharingBase.php index fec77ca2f9..64c84da840 100644 --- a/api/tests/Vfs/SharingBase.php +++ b/api/tests/Vfs/SharingBase.php @@ -112,6 +112,9 @@ class SharingBase extends LoggedInTest // Remove any mounts foreach($this->mounts as $mount) { + // Do not remove /apps + if($mount == '/apps') continue; + Vfs::umount($mount); }