[ https://issues.apache.org/jira/browse/LANG-346?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12518092 ]
davemeikle edited comment on LANG-346 at 8/7/07 5:44 AM: ---------------------------------------------------------- Sorry about that - This patch should remove the unit test's dependency on GMT. was (Author: davemeikle): Sorry about that - This patch should remove the dependency on GMT. > Dates.round() behaves incorrectly for minutes and seconds > --------------------------------------------------------- > > Key: LANG-346 > URL: https://issues.apache.org/jira/browse/LANG-346 > Project: Commons Lang > Issue Type: Bug > Affects Versions: 2.2, 2.3 > Reporter: Ken Dombeck > Fix For: 2.3.1 > > Attachments: LANG-346.patch > > > Get unexpected output for rounding by minutes or seconds. > public void testRound() > { > Calendar testCalendar = Calendar.getInstance(TimeZone.getTimeZone("GMT")); > testCalendar.set(2007, 6, 2, 8, 9, 50); > Date date = testCalendar.getTime(); > System.out.println("Before round() " + date); > System.out.println("After round() " + DateUtils.round(date, > Calendar.MINUTE)); > } > --2.1 produces > Before round() Mon Jul 02 03:09:50 CDT 2007 > After round() Mon Jul 02 03:10:00 CDT 2007 -- this is what I would expect > --2.2 and 2.3 produces > Before round() Mon Jul 02 03:09:50 CDT 2007 > After round() Mon Jul 02 03:01:00 CDT 2007 -- this appears to be wrong -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.