diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-08-14 17:21:52 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-08-18 16:52:48 +0200 |
commit | 193a0b1a17d21458acac5b2db8f91a69fcb044c0 (patch) | |
tree | af3d79675d4a032310085ad32301c80225ca28a6 /apps/files_sharing | |
parent | c25915cde477c31c18a08dd61128f68a4190f49f (diff) | |
download | nextcloud-server-193a0b1a17d21458acac5b2db8f91a69fcb044c0.tar.gz nextcloud-server-193a0b1a17d21458acac5b2db8f91a69fcb044c0.zip |
fix broken unit tests
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/tests/sharedstorage.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/files_sharing/tests/sharedstorage.php b/apps/files_sharing/tests/sharedstorage.php index 27f3b5150d5..972f9257e25 100644 --- a/apps/files_sharing/tests/sharedstorage.php +++ b/apps/files_sharing/tests/sharedstorage.php @@ -52,9 +52,11 @@ class Test_Files_Sharing_Storage extends Test_Files_Sharing_Base { } /** + * if the parent of the mount point is gone then the mount point should move up + * * @medium */ - function testDeleteParentOfMountPoint() { + function testParentOfMountPointIsGone() { // share to user $fileinfo = $this->view->getFileInfo($this->folder); @@ -79,8 +81,8 @@ class Test_Files_Sharing_Storage extends Test_Files_Sharing_Base { $this->assertFalse($user2View->is_dir($this->folder)); // delete the local folder - $result = $user2View->unlink('/localfolder'); - $this->assertTrue($result); + $fullPath = \OC_Config::getValue('datadirectory') . '/' . self::TEST_FILES_SHARING_API_USER2 . '/files/localfolder'; + rmdir($fullPath); //enforce reload of the mount points self::loginHelper(self::TEST_FILES_SHARING_API_USER2); |