Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6147f0c authored by Fabrice Di Meglio's avatar Fabrice Di Meglio Committed by Android Git Automerger
Browse files

am 514a455f: am 28fa220c: Merge "Fix bug #2585298 (google calendar sync clears...

am 514a455f: am 28fa220c: Merge "Fix bug #2585298 (google calendar sync clears eventTimezone field for recurring allDay events)" into gingerbread

Merge commit '514a455f'

* commit '514a455f':
  Fix bug #2585298 (google calendar sync clears eventTimezone field for recurring allDay events)
parents bd642aaf 514a455f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ public class RecurrenceSetTest extends TestCase {
        String recurrence = "DTSTART;VALUE=DATE:20090821\nDTEND;VALUE=DATE:20090822\n"
                + "RRULE:FREQ=YEARLY;WKST=SU";
        verifyPopulateContentValues(recurrence, "FREQ=YEARLY;WKST=SU", null,
                null, null, 1250812800000L, null, "P1D", 1);
                null, null, 1250812800000L, "UTC", "P1D", 1);
    }

    // Test 2 day all-day event
@@ -55,7 +55,7 @@ public class RecurrenceSetTest extends TestCase {
        String recurrence = "DTSTART;VALUE=DATE:20090821\nDTEND;VALUE=DATE:20090823\n"
                + "RRULE:FREQ=YEARLY;WKST=SU";
        verifyPopulateContentValues(recurrence, "FREQ=YEARLY;WKST=SU", null,
                null, null, 1250812800000L, null,  "P2D", 1);
                null, null, 1250812800000L, "UTC",  "P2D", 1);
    }

    // run populateContentValues and verify the results