Add yet another case to DateTimeFormat::fix

- Address https://github.com/friendica/friendica/issues/12488#issuecomment-1372637862
This commit is contained in:
Hypolite Petovan 2023-01-09 08:51:20 -05:00
parent 79a646550f
commit 6bee344681
2 changed files with 6 additions and 2 deletions

View file

@ -130,6 +130,10 @@ class DateTimeFormatTest extends MockedTest
'(Coordinated Universal Time)' => [
'expectedDate' => '2022-12-30T14:29:10+00:00',
'dateString' => 'Fri Dec 30 2022 14:29:10 GMT+0000 (Coordinated Universal Time)',
],
'Double HTML encode' => [
'expectedDate' => '2015-05-22T08:48:00+12:00',
'dateString' => '2015-05-22T08:48:00+12:00'
]
];
}