diff options
author | Joas Schilling <coding@schilljs.com> | 2022-11-25 11:46:56 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-11-25 11:46:56 +0100 |
commit | 13957032cfd2c4e1d306b3a1b3c6076ecf160f80 (patch) | |
tree | 8fc3f3273782d1a76e68962ded4398d6f44b0eb7 /apps | |
parent | c63ff42410107570eef49cd0deea75821c5aeae1 (diff) | |
download | nextcloud-server-13957032cfd2c4e1d306b3a1b3c6076ecf160f80.tar.gz nextcloud-server-13957032cfd2c4e1d306b3a1b3c6076ecf160f80.zip |
More fixing
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/tests/unit/Connector/Sabre/BlockLegacyClientPluginTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/tests/unit/Connector/Sabre/BlockLegacyClientPluginTest.php b/apps/dav/tests/unit/Connector/Sabre/BlockLegacyClientPluginTest.php index 4d2771132cc..e9d43f77cca 100644 --- a/apps/dav/tests/unit/Connector/Sabre/BlockLegacyClientPluginTest.php +++ b/apps/dav/tests/unit/Connector/Sabre/BlockLegacyClientPluginTest.php @@ -82,7 +82,7 @@ class BlockLegacyClientPluginTest extends TestCase { $this->config ->expects($this->once()) ->method('getSystemValue') - ->with('minimum.supported.desktop.version', '2.0.0') + ->with('minimum.supported.desktop.version', '2.3.0') ->willReturn('1.7.0'); $this->blockLegacyClientVersionPlugin->beforeHandler($request); @@ -117,7 +117,7 @@ class BlockLegacyClientPluginTest extends TestCase { $this->config ->expects($this->once()) ->method('getSystemValue') - ->with('minimum.supported.desktop.version', '2.0.0') + ->with('minimum.supported.desktop.version', '2.3.0') ->willReturn('1.7.0'); $this->blockLegacyClientVersionPlugin->beforeHandler($request); |