Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix broken tests
  • Loading branch information
benfortuna committed Jul 8, 2019
1 parent ec0883b commit be18843
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/net/fortuna/ical4j/model/RecurTest.java
Expand Up @@ -754,8 +754,8 @@ public static TestSuite suite() throws ParseException {
rrule = "FREQ=DAILY;BYHOUR=9,10,11,12,13,14,15,16;BYMINUTE=0,30";
recur = new Recur(rrule);

cal = Calendar.getInstance();
cal.set(2019, 02, 14, 0, 0, 0);
cal = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
cal.set(2019, 02, 14, 8, 0, 0);
start = new DateTime(cal.getTime());
cal.add(Calendar.DAY_OF_YEAR, 1);
end = new DateTime(cal.getTime());
Expand Down

0 comments on commit be18843

Please sign in to comment.