summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2015-04-02 12:03:37 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-07 13:30:30 +0200
commitfac7ec3fc445ed528d84b258717e856e3638d734 (patch)
tree9f6888e4e67b3a81a1b31f5e43a2fcdfb7951141 /apps/files_sharing
parent60d8a39f03aef3a2b555505396ccd5716ad85eb1 (diff)
downloadnextcloud-server-fac7ec3fc445ed528d84b258717e856e3638d734.tar.gz
nextcloud-server-fac7ec3fc445ed528d84b258717e856e3638d734.zip
fix re-shares with encryption
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/tests/testcase.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/tests/testcase.php b/apps/files_sharing/tests/testcase.php
index 69f68f7dfe8..b9f8658a69e 100644
--- a/apps/files_sharing/tests/testcase.php
+++ b/apps/files_sharing/tests/testcase.php
@@ -157,7 +157,7 @@ abstract class TestCase extends \Test\TestCase {
$storage = new \ReflectionClass('\OC\Files\Storage\Shared');
$isInitialized = $storage->getProperty('isInitialized');
$isInitialized->setAccessible(true);
- $isInitialized->setValue(false);
+ $isInitialized->setValue(array());
$isInitialized->setAccessible(false);
}