Skip to content

Commit 2ed5c7a

Browse files
committed
Fix invalid test-input file
This file generated a libical error complaining Can't parse as RECUR value in RRULE property. Removing entire property: FREQ=YEARLY\;UNTIL=123456T123456\;BYSETPOS=-1\,2\,-3\,4\,-5\,6\,-7\,8\,9\,10\,11\,12\,13\,14\,15\,16\,17\,18\,19\,20\,21\,22\,23\,4\,25\,26\,27\,28\,29\,30\,31\,32\,33\,34\,35\,36\,37\,38\,39\,40\,41\,42\,43\,44\,45\,46\,47\,48\,49\,50\,51\,52\,53\,54\;BYSECOND=1\,2\,3\,4\,5\,6\,7\,8\,9\,10\,11\,12\,13\,14\,15\,16\,17\,18\,19\,20\,21\,22\,23\,4\,25\,26 The error makes three of the tests for this file fail. The issue appears to be that the UNTIL value is invalid; adding two more digits (allowing it to be parsed as a YYYYMMDD string) fixes the error. As far as I can tell this error is irrelevant for the affected tests.
1 parent a22e17f commit 2ed5c7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

XbICalendar/XbICalendarTests/TestData/smallcluster.ics

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ DTSTART
77
:19970714T170000Z
88
DTEND:19970715T035959Z
99
SUMMARY:Bastille Day Party
10-
RRULE:FREQ=YEARLY;UNTIL=123456T123456;BYSETPOS=-1,2,-3,4,-5,6,-7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,4,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54;BYSECOND=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,4,25,26
10+
RRULE:FREQ=YEARLY;UNTIL=12345678T123456;BYSETPOS=-1,2,-3,4,-5,6,-7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,4,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54;BYSECOND=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,4,25,26
1111
END:VEVENT
1212
END:VCALENDAR
1313
END:VCALENDAR

0 commit comments

Comments
 (0)