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');