diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-04-14 10:15:43 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-04-23 12:54:25 +0200 |
commit | 22e0a4b9a8835df4bfc88b478e694b0983cb1060 (patch) | |
tree | fd0831c78289666f4b61c674eb3b4834872cc844 /apps/files_external/tests/mountconfig.php | |
parent | c9bd2f7a6c1e72a2ed6d7aa5f180e2c0757ac24c (diff) | |
download | nextcloud-server-22e0a4b9a8835df4bfc88b478e694b0983cb1060.tar.gz nextcloud-server-22e0a4b9a8835df4bfc88b478e694b0983cb1060.zip |
external storages: allow to mount a folder called "Shared", it is no longer a reserved name
Diffstat (limited to 'apps/files_external/tests/mountconfig.php')
-rw-r--r-- | apps/files_external/tests/mountconfig.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index c89874c94d5..1921ec76af3 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -128,9 +128,6 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $isPersonal = false; $this->assertFalse(OC_Mount_Config::addMountPoint('', $storageClass, array(), $mountType, $applicable, $isPersonal)); $this->assertFalse(OC_Mount_Config::addMountPoint('/', $storageClass, array(), $mountType, $applicable, $isPersonal)); - $this->assertFalse(OC_Mount_Config::addMountPoint('Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); - $this->assertFalse(OC_Mount_Config::addMountPoint('/Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); - } /** @@ -488,7 +485,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { 'root' => 'someroot' ); - // add mount point as "test" user + // add mount point as "test" user $this->assertTrue( OC_Mount_Config::addMountPoint( '/ext', |