Describe the bugLLLL pattern does not work as intended. Instead, it uses the MMMM pattern.
To Reproduce
Add the following test in main of custom tests:
test('stand alone month is correct', () {
final dateFormat = DateFormat.LLLL('el_GR');
final date = DateTime.now().copyWith(month: 7);
final formattedDate = dateFormat.format(date);
expect(formattedDate, equals('Ιούλιος'));
});
Describe the bug
LLLL
pattern does not work as intended. Instead, it uses theMMMM
pattern.To Reproduce Add the following test in
main
of custom tests:The expected value in the test provided is based on the stand alone month values of the locale.
System info