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
The test for bug Lang-26 (testLang645) only fails for particular system locales. For example, if your system locale is en_US, the test will fail. However, if your system locale is en_GB, the test will pass.
The test can be modified to ensure that it always catches the bug, regardless of your own system locale by adding the line Locale.setDefault(new Locale("en", "US")); to the start of the test.
The text was updated successfully, but these errors were encountered:
The test for bug Lang-26 (
testLang645
) only fails for particular system locales. For example, if your system locale isen_US
, the test will fail. However, if your system locale isen_GB
, the test will pass.The test can be modified to ensure that it always catches the bug, regardless of your own system locale by adding the line
Locale.setDefault(new Locale("en", "US"));
to the start of the test.The text was updated successfully, but these errors were encountered: