Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
number prefixed by 0 is for octal
Even if 00 == 0 :)
  • Loading branch information
panthony authored and fbacchella committed Apr 23, 2015
1 parent c8425e8 commit eae73b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion junit/jrds/PeriodTest.java
Expand Up @@ -97,7 +97,7 @@ public void hourShortFormat() throws ParseException {
Calendar cal = Calendar.getInstance();
cal.set(Calendar.HOUR_OF_DAY, 1);
cal.set(Calendar.MINUTE, 12);
cal.set(Calendar.SECOND, 00);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
Date begin = cal.getTime();

Expand Down

0 comments on commit eae73b2

Please sign in to comment.