We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In VMs or develop environments with a different Locale than English the testConservationSpecies fails with:
testConservationSpecies
org.junit.ComparisonFailure: Latitude Expected :-35.3 Actual :-35,3
This is caused for the use of String.format without specifying a Locale, so it's use the JVM locale. Similar issue: AtlasOfLivingAustralia/biocache-service#417
String.format
The text was updated successfully, but these errors were encountered:
Fix for AtlasOfLivingAustralia#36
cc70255
Merge pull request #37 from vjrj/locale-string-format
aee4609
Fix for #36
develop
master
No branches or pull requests
In VMs or develop environments with a different Locale than English the
testConservationSpecies
fails with:This is caused for the use of
String.format
without specifying a Locale, so it's use the JVM locale. Similar issue:AtlasOfLivingAustralia/biocache-service#417
The text was updated successfully, but these errors were encountered: