Skip to content

Commit 96ea620

Browse files
committed
Fix text
1 parent 9a8ab58 commit 96ea620

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/src/test/kotlin/at/bitfire/synctools/mapping/calendar/processor/RecurrenceFieldProcessorTest.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ class RecurrenceFieldProcessorTest {
9292
fun `EXRULE with UNTIL before DTSTART`() {
9393
val result = Event()
9494
val entity = Entity(contentValuesOf(
95-
Events.DTSTART to 1759403653000, // Thu Oct 02 2025 11:14:13 GMT+0000
95+
Events.DTSTART to 1759403653000, // Thu Oct 02 2025 11:14:13 GMT+0000,
96+
Events.RRULE to "FREQ=DAILY;COUNT=10", // EXRULE is only processed for recurring events
9697
Events.EXRULE to "FREQ=DAILY;UNTIL=20251002T111300Z"
9798
))
9899
processor.process(entity, entity, result)

0 commit comments

Comments
 (0)