diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2025-01-14 10:38:08 -0100 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2025-01-14 10:38:15 -0100 |
commit | 28acc002a2e4b1e54fb3a3c68af504166f89283c (patch) | |
tree | 94985b0f5116ba209ce4b3bbee2a92ec4df94f0d /tests | |
parent | bd4a154d6406e986a05522f3f71b74d4dc284fdb (diff) | |
download | nextcloud-server-28acc002a2e4b1e54fb3a3c68af504166f89283c.tar.gz nextcloud-server-28acc002a2e4b1e54fb3a3c68af504166f89283c.zip |
fix(lexicon): syntaxfeat/noid/lexicon-configurable-default-value
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Core/Command/Config/App/GetConfigTest.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/Core/Command/Config/App/GetConfigTest.php b/tests/Core/Command/Config/App/GetConfigTest.php index 33e50699bbe..c1a6265db40 100644 --- a/tests/Core/Command/Config/App/GetConfigTest.php +++ b/tests/Core/Command/Config/App/GetConfigTest.php @@ -101,11 +101,6 @@ class GetConfigTest extends TestCase { ->method('getDetails') ->with('app-name', $configName) ->willReturn(['value' => $value]); - } else { - $this->config->expects($this->once()) - ->method('getValueMixed') - ->with('app-name', $configName, $defaultValue) - ->willReturn($defaultValue); } } |