Skip to content

Commit

Permalink
Fixed test that was failing due to year change :(
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed Jan 18, 2020
1 parent 0bb927a commit b3cde0b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ public void testGetNoteRecurrentReminderText () {
String rrule = "FREQ=WEEKLY;WKST=MO;BYDAY=MO,TU,TH";
String alarmText = RecurrenceHelper.getNoteRecurrentReminderText(reminder, rrule);

Assert.assertEquals("Weekly on Mon, Tue, Thu starting from Thu, Dec 26 3:17 PM", alarmText);
Assert.assertEquals("Weekly on Mon, Tue, Thu starting from Thu, Dec 26, 2019 3:17 PM", alarmText);
}

}
//Weekly on Mon, Tue, Thu starting from Thu, Dec 26, 3:17 PM
//Weekly on Mon, Tue, Thu starting from Thu, Dec 26, 2019 3:17 PM

0 comments on commit b3cde0b

Please sign in to comment.