Skip to content

Commit

Permalink
fixup! feat(webcal): only update modified and deleted events from web…
Browse files Browse the repository at this point in the history
…cal calendars
  • Loading branch information
miaulalala committed Aug 7, 2024
1 parent 9ff7631 commit 54dde4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/dav/tests/unit/CalDAV/WebcalCaching/ConnectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down Expand Up @@ -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');

Expand Down Expand Up @@ -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');

Expand Down

0 comments on commit 54dde4d

Please sign in to comment.