You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running mvn clean install -Dgpg.skip=true on a system with a german locale, many tests fail with:
java.lang.NumberFormatException: For input string: "18,58"
The number in the exception messages changes randomly as it is generated by javafaker. It seems like javafaker does not respect the locale when formatting prices, see: DiUS/java-faker#433.
When running
mvn clean install -Dgpg.skip=true
on a system with a german locale, many tests fail with:The number in the exception messages changes randomly as it is generated by
javafaker
. It seems likejavafaker
does not respect the locale when formatting prices, see: DiUS/java-faker#433.Possible solutions:
javafaker
, like so:Locale.setDefault(Locale.ENGLISH);
The text was updated successfully, but these errors were encountered: