[
https://issues.apache.org/jira/browse/FLEX-17210?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14557577#comment-14557577
]
Chris Martin commented on FLEX-17210:
-------------------------------------
Hey Justin,
I want to take another look at this one. Seems the exception that we are now
throwing is halting the mustella tests for ResourceManager. I ran into it
while trying to add in a mustella test for FLEX-25045. In the course of
getting help with getting the tests to run, I identified that the exception was
causing the mustella tests to not complete [1]. Alex and I are thinking that we
should remove the exception to get the tests to perform as they did prior to
4.10.0. Do you have any thoughts on this one?
Thanks,
Chris
[1]http://apache-flex-development.2333347.n4.nabble.com/Could-not-find-compiled-locale-with-mustella-ResourceManager-tests-td43338.html#a43408
> 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)