File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
main/kotlin/at/bitfire/synctools/icalendar
test/kotlin/at/bitfire/synctools/icalendar Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import javax.annotation.WillNotClose
2626 * Writes an ical4j [net.fortuna.ical4j.model.Calendar] to a stream that contains an iCalendar
2727 * (VCALENDAR with respective components and optional VTIMEZONEs).
2828 */
29- class ICalendarWriter {
29+ class ICalendarGenerator {
3030
3131 /* *
3232 * Generates an iCalendar from the given [AssociatedComponents].
Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ import org.junit.Test
2222import java.io.StringWriter
2323import java.time.Duration
2424
25- class ICalendarWriterTest {
25+ class ICalendarGeneratorTest {
2626
2727 private val tzRegistry = TimeZoneRegistryFactory .getInstance().createRegistry()
2828 private val tzBerlin = tzRegistry.getTimeZone(" Europe/Berlin" )!!
2929 private val tzLondon = tzRegistry.getTimeZone(" Europe/London" )!!
3030 private val tzUTC = tzRegistry.getTimeZone(TimeZones .UTC_ID )!!
3131
3232 private val userAgent = " TestUA/1.0"
33- private val writer = ICalendarWriter ()
33+ private val writer = ICalendarGenerator ()
3434
3535 @Test
3636 fun `Write event with exceptions and various timezones` () {
You can’t perform that action at this time.
0 commit comments