summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-10-18 17:16:25 +0200
committerGitHub <noreply@github.com>2016-10-18 17:16:25 +0200
commitc55a737b2682ce2ba6a13d36fcf750a9ab66e562 (patch)
tree6cb76019879cc631dbcaaca52e165b92e77ede9c /apps
parent0923d2665f516e5505340122bf0f2e1deca08825 (diff)
parent6c5f7d586e6bad7671587c61dbe3a260d098b57f (diff)
downloadnextcloud-server-c55a737b2682ce2ba6a13d36fcf750a9ab66e562.tar.gz
nextcloud-server-c55a737b2682ce2ba6a13d36fcf750a9ab66e562.zip
Merge pull request #1734 from nextcloud/setvalue_opt
AllConfig setUserValue opt
Diffstat (limited to 'apps')
-rw-r--r--apps/encryption/tests/MigrationTest.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/encryption/tests/MigrationTest.php b/apps/encryption/tests/MigrationTest.php
index 868a1ad3922..595d7f12067 100644
--- a/apps/encryption/tests/MigrationTest.php
+++ b/apps/encryption/tests/MigrationTest.php
@@ -343,6 +343,10 @@ class MigrationTest extends \Test\TestCase {
unset($cache['files_encryption']);
$this->invokePrivate(\OC::$server->getAppConfig(), 'cache', [$cache]);
+ $cache = $this->invokePrivate($config, 'userCache');
+ unset($cache[self::TEST_ENCRYPTION_MIGRATION_USER1]);
+ $this->invokePrivate(\OC::$server->getAppConfig(), 'userCache', [$cache]);
+
// delete default values set by the encryption app during initialization
/** @var \OCP\IDBConnection $connection */