diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2024-04-17 16:27:21 -0100 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2024-04-17 16:28:02 -0100 |
commit | a624a2b34f87f7655b008f940ad5427739501fed (patch) | |
tree | 15de4b72d29fcfa9ffc3eaee46829c7b32b1622b /tests | |
parent | b4004a258296bbe8563a5c76f8e611976c2a7ffd (diff) | |
download | nextcloud-server-a624a2b34f87f7655b008f940ad5427739501fed.tar.gz nextcloud-server-a624a2b34f87f7655b008f940ad5427739501fed.zip |
fix(appconfig): returns correct value on details
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/AppConfigTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/AppConfigTest.php b/tests/lib/AppConfigTest.php index 5bbc3f56791..d25a25c8e66 100644 --- a/tests/lib/AppConfigTest.php +++ b/tests/lib/AppConfigTest.php @@ -1253,7 +1253,7 @@ class AppConfigTest extends TestCase { [ 'app' => 'sensitive-app', 'key' => 'lazy-key', - 'value' => $this->baseStruct['sensitive-app']['lazy-key']['encrypted'], + 'value' => 'value', 'type' => 4, 'lazy' => true, 'typeString' => 'string', |