You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Robert Hu (JIRA)" <ji...@apache.org> on 2007/06/07 04:27:26 UTC

[jira] Closed: (HARMONY-2122) [classlib][luni] Calendar incorrectly handle new AM_PM value setting

     [ https://issues.apache.org/jira/browse/HARMONY-2122?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Hu closed HARMONY-2122.
------------------------------


Fix verified.
Thanks a lot!

> [classlib][luni] Calendar incorrectly handle new AM_PM value setting
> --------------------------------------------------------------------
>
>                 Key: HARMONY-2122
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2122
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Robert Hu
>            Assignee: Paulex Yang
>            Priority: Minor
>         Attachments: Harmony2122.diff
>
>
> Following code is to test whether the Calendar.set(int,int) method successfully set the new value of AM_PM.
>         
>         Calendar cal = Calendar.getInstance();
>         int oldValue = cal.get(Calendar.AM_PM);
>         int newValue = (oldValue == Calendar.AM)?Calendar.PM:Calendar.AM;
>         cal.set(Calendar.AM_PM, newValue);
>         newValue = cal.get(Calendar.AM_PM);
>         assertTrue(newValue!=oldValue);
> RI passes it
> Harmony failed it.
> The problem is maybe in the complete() method.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.