1
0
Fork 0

Add new case to DateTimeFormat::fix

- Address https://github.com/friendica/friendica/issues/12488#issuecomment-1368011436
This commit is contained in:
Hypolite Petovan 2022-12-30 21:40:37 -05:00
commit b6f3f298fe
2 changed files with 6 additions and 2 deletions

View file

@ -126,6 +126,10 @@ class DateTimeFormatTest extends MockedTest
'German date time string' => [
'expectedDate' => '2022-10-05T16:34:00+02:00',
'dateString' => '05 Okt 2022 16:34:00 +0200',
],
'(Coordinated Universal Time)' => [
'expectedDate' => '2022-12-30T14:29:10+00:00',
'dateString' => 'Fri Dec 30 2022 14:29:10 GMT+0000 (Coordinated Universal Time)',
]
];
}