codeconsole opened a new issue, #14200:
URL: https://github.com/apache/grails-core/issues/14200

   These test fail with Java 21 `21.0.5-librca`, but work with `17.0.12-librca`
   
   DefaultDateHelperSpec. Full getTimeFormat for style FULL returns 8:00:00 AM 
Coordinated Universal Time
   
   DefaultDateHelperSpec. for getDateTimeFormat(FULL, FULL) => `Sunday, January 
5, 1941 at 8:00:00 AM Coordinated Universal Time`
   ```
   format.format(LocalDateTime.of(localDate, localTime)) == expected
   |      |      |             |  |          |           |  |
   |      |      |             |  1941-01-05 08:00       |  Sunday, January 5, 
1941 at 8:00:00 AM Coordinated Universal Time
   |      |      |             1941-01-05T08:00          false
   |      |      class java.time.LocalDateTime           4 differences (93% 
similarity)
   |      |                                              Sunday, January 5, 
1941(,--) 8:00:00( )AM Coordinated Universal Time
   |      |                                              Sunday, January 5, 
1941( at) 8:00:00( )AM Coordinated Universal Time
   |      Sunday, January 5, 1941, 8:00:00 AM Coordinated Universal Time
   Localized(FULL,FULL)
   ```
   the word `at`
   
   DefaultDateHelperSpec. for getDateTimeFormat(LONG, LONG) => `January 5, 1941 
at 8:00:00 AM UTC`
   `January 5, 1941 at 8:00:00 AM UTC` vs
   `January 5, 1941, 8:00:00 AM UTC  `
   
   DefaultDateHelperSpec. for getDateTimeFormat(MEDIUM, MEDIUM) => `Jan 5, 
1941, 8:00:00 AM`
   DefaultDateHelperSpec. for getDateTimeFormat(null, null) => `1/5/41, 8:00 AM`
   DefaultDateHelperSpec. getTimeFormat for style LONG returns ` 8:00:00 AM UTC`
   DefaultDateHelperSpec. getTimeFormat for style MEDIUM returns `8:00:00 AM`
   DefaultDateHelperSpec. getTimeFormat for style null returns `8:00 AM`
   ```
   format.format(localTime) == expected
   |      |      |          |  |
   |      |      08:00      |  8:00 AM
   |      8:00 AM           false
   Localized(,SHORT)        1 difference (85% similarity)
                            8:00( )AM
                            8:00( )AM
   ```
   issue with the space character?? 
   
   ValidationTagLibSpec. testFieldValueTagWithFrenchLocaleInTextField


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to