Fix DateTimeFormat issue

This commit is contained in:
Philipp Holzer 2023-04-03 18:42:41 +02:00
commit 9c375e6460
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
2 changed files with 7 additions and 3 deletions

View file

@ -134,7 +134,11 @@ class DateTimeFormatTest extends MockedTest
'Double HTML encode' => [
'expectedDate' => '2015-05-22T08:48:00+12:00',
'dateString' => '2015-05-22T08:48:00+12:00'
]
],
'2023-04-02\T17:22:42+05:30' => [
'expectedDate' => '2023-04-02T17:22:42+05:30',
'dateString' => '2023-04-02\T17:22:42+05:30'
],
];
}