> Now I know what is the problem but I do not know the solution yet -but I
> think it is a simple issue-
> the problem is that I have a french system in which the "." is replaced by
> ","
> look at this error message:
This should only be problematic with Strings. We've had this issue
multiple times when reading numbers from files. Depending on the locale
either a dot or comma is expected as delimiter.
> junit.framework.ComparisonFailure: format expected:<nm{n=0 m=[1[.100,
> 2.200,
> 3.300] sd=0.]75}> but was:<nm{n=0 m=[1[,100, 2,200, 3,300] sd=0,]75}>
>
> I do not know how to change this in linux
Either set the locale of your Linux system to something English (probably
not what you want, applications will speak English then etc.) or in your
Java program somewhere near the beginning call
Locale.setDefault(Locale.US);
This sets the locale to US.
HTH,
Alex
--
PGP Public Key: http://www.tu-ilmenau.de/~alha-in/ahans.asc
Fingerprint: E110 4CA3 288A 93F3 5237 E904 A85B 4B18 CFDC 63E3