From 54dde4d6414e37e593164d223377761fb95d6fe8 Mon Sep 17 00:00:00 2001 From: Anna Larch Date: Wed, 7 Aug 2024 18:28:22 +0200 Subject: [PATCH] fixup! feat(webcal): only update modified and deleted events from webcal calendars --- apps/dav/tests/unit/CalDAV/WebcalCaching/ConnectionTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/dav/tests/unit/CalDAV/WebcalCaching/ConnectionTest.php b/apps/dav/tests/unit/CalDAV/WebcalCaching/ConnectionTest.php index c6e23cd8ff8b6..de749aae3f870 100644 --- a/apps/dav/tests/unit/CalDAV/WebcalCaching/ConnectionTest.php +++ b/apps/dav/tests/unit/CalDAV/WebcalCaching/ConnectionTest.php @@ -56,7 +56,7 @@ public function testLocalUrl($source) { ->willReturn($client); $this->config->expects(self::once()) - ->method('getAppValue') + ->method('getValueString') ->with('dav', 'webcalAllowLocalAccess', 'no') ->willReturn('no'); @@ -90,7 +90,7 @@ public function testInvalidUrl(): void { ->with() ->willReturn($client); $this->config->expects(self::once()) - ->method('getAppValue') + ->method('getValueString') ->with('dav', 'webcalAllowLocalAccess', 'no') ->willReturn('no'); @@ -127,7 +127,7 @@ public function testConnection(string $url, string $result, string $contentType) ->willReturn($client); $this->config->expects($this->once()) - ->method('getAppValue') + ->method('getValueString') ->with('dav', 'webcalAllowLocalAccess', 'no') ->willReturn('no');