aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/unit
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2024-11-20 10:05:13 +0100
committerThomas Citharel <tcit@tcit.fr>2024-11-20 10:07:29 +0100
commitd3068f5db54da56692133e3ee6fe7bc9184681ce (patch)
treef5fcfd6ad689aaa08d2529e7b9ed597ec993ac6f /apps/dav/tests/unit
parentd334773b9868561db86209bbf801d2835f182a7b (diff)
downloadnextcloud-server-d3068f5db54da56692133e3ee6fe7bc9184681ce.tar.gz
nextcloud-server-d3068f5db54da56692133e3ee6fe7bc9184681ce.zip
feat(dav): increase default calendar subscription refresh rate to one daydav-webcal-default-refresh-rate
With the performance benefits from #43541 it makes sense Reference https://github.com/nextcloud/server/issues/46171#issuecomment-2487910923 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'apps/dav/tests/unit')
-rw-r--r--apps/dav/tests/unit/BackgroundJob/RefreshWebcalJobTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/BackgroundJob/RefreshWebcalJobTest.php b/apps/dav/tests/unit/BackgroundJob/RefreshWebcalJobTest.php
index f97626a6a73..2b11223210e 100644
--- a/apps/dav/tests/unit/BackgroundJob/RefreshWebcalJobTest.php
+++ b/apps/dav/tests/unit/BackgroundJob/RefreshWebcalJobTest.php
@@ -78,7 +78,7 @@ class RefreshWebcalJobTest extends TestCase {
$this->config->expects($this->once())
->method('getAppValue')
- ->with('dav', 'calendarSubscriptionRefreshRate', 'P1W')
+ ->with('dav', 'calendarSubscriptionRefreshRate', 'P1D')
->willReturn('P1W');
$this->timeFactory->method('getTime')