Especially the last one, with apparently a change in default pattern of DateTimeFormatter.ofLocalizedTime(FormatStyle.MEDIUM).withLocale(Locale.US) caused a failed test because the whitespace before the am/pm marker has apparently become a NNBSP (\u202f) instead of a plain vanilla space. So the test input of 4:52:56 PM wasn't accepted. The enduser has literally to enter 4:52:56\u202fPM in order for the test to pass. This doesn't make sense. So I've deactivated the associated tests for now. This is definitely something we need to look closer at: https://github.com/eclipse-ee4j/mojarra/issues/5399
Real problems were here:
Especially the last one, with apparently a change in default pattern of
DateTimeFormatter.ofLocalizedTime(FormatStyle.MEDIUM).withLocale(Locale.US)
caused a failed test because the whitespace before the am/pm marker has apparently become a NNBSP (\u202f
) instead of a plain vanilla space. So the test input of4:52:56 PM
wasn't accepted. The enduser has literally to enter4:52:56\u202fPM
in order for the test to pass. This doesn't make sense. So I've deactivated the associated tests for now. This is definitely something we need to look closer at: https://github.com/eclipse-ee4j/mojarra/issues/5399