[ 
https://issues.apache.org/jira/browse/FLEX-17210?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14558721#comment-14558721
 ] 

Chris Martin commented on FLEX-17210:
-------------------------------------

I went through and commented out each test that failed due to the new exception 
being thrown.  If we were to keep the exception throw, we'd need to adjust 
these test cases.  Some I think just require a little reorganization in the 
setup of the test, while others may be obsoleted due to the new exception being 
thrown.

ResourceManager_Methods_findResourceBundleWithResource$RTL_ResourceManager_Method_findResourceBundleWithResource_1LocaleChainItem_InvalidLocale
ResourceManager_Methods_findResourceBundleWithResource$RTL_ResourceManager_Method_findResourceBundleWithResource_3LocaleChainItems_InvalidLocale
ResourceManager_Methods_loadResourceModule$RTL_Method_loadResourceModule_OneLocaleOneBundle
ResourceManager_Methods_loadResourceModule$RTL_Method_loadResourceModule_OneLocaleThreeBundles
ResourceManager_Methods_loadResourceModule$RTL_Method_loadResourceModule_SameLocaleAdditionalBundle
ResourceManager_Methods_loadResourceModule$RTL_Method_loadResourceModule_SameLocaleSameBundle
ResourceManager_Methods_loadResourceModule$RTL_Method_loadResourceModule_AdditionalLocale1Bundle
ResourceManager_Methods_loadResourceModule$RTL_Method_loadResourceModule_AdditionalLocales3Bundles
ResourceManager_Methods_loadResourceModule$RTL_Method_loadResourceModule_SeveralFrameworkLocales_1of3
ResourceManager_Methods_loadResourceModule$RTL_Method_loadResourceModule_SeveralFrameworkLocales_2of3
ResourceManager_Methods_loadResourceModule$RTL_Method_loadResourceModule_SeveralFrameworkLocales_3of3
ResourceManager_Properties_localeChain 
ResourceManager_Property_localeChain_valid

> mx:NumberFormatter failed when use localeChain
> ----------------------------------------------
>
>                 Key: FLEX-17210
>                 URL: https://issues.apache.org/jira/browse/FLEX-17210
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: Formatters
>    Affects Versions: Adobe Flex SDK Previous
>         Environment: Affected OS(s): Windows
> Affected OS(s): 
> Language Found: English
>            Reporter: Adobe JIRA
>            Assignee: Justin Mclean
>              Labels: easytest
>
>       Steps to reproduce:
> <?xml version="1.0" encoding="utf-8"?>
> <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"; 
> layout="absolute" creationComplete="onCC();">
>       <mx:Script>
>               <![CDATA[
>                       import mx.formatters.NumberFormatter;
>               
>                       private function onCC():void
>                       {
>                               var nf:NumberFormatter = new NumberFormatter();
>                               nf.precision = 2;
>                               resourceManager.localeChain = ['zh-Hans'];      
>                         
>                               trace("number:"+nf.format(1/3));        
>                               resourceManager.localeChain = ['en_US'];
>                               trace("number:"+nf.format(1/3));        
>                       }
>               ]]
>       >
>       </mx:Script>
> </mx:WindowedApplication>
>  
>  Actual Results:
>  
> number:
> number:0.33
>  
>  Expected Results:
>  
> number:0.33
> number:0.33
>  
>  Workaround (if any):
>     



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to