Skip to content

Commit

Permalink
MNT Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Sep 30, 2024
1 parent c10b2d0 commit fae161a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/php/Model/LocalDateTimeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,19 @@ public static function provideTestSwitchLocales()
return [
[
'locale' => 'en_NZ',
'localTIme' => '2021-01-13 02:00:12',
'expectedTime' => '2021-01-13 02:00:12',
],
[
'locale' => 'en_AU',
'localTime' => '2021-01-12 23:00:12',
'expectedTime' => '2021-01-12 23:00:12',
],
[
'locale' => 'es_ES',
'localTime' => '2021-01-12 14:00:12',
'expectedTime' => '2021-01-12 14:00:12',
],
[
'locale' => 'es_US',
'localTime' => '2021-01-12 08:00:12',
'expectedTime' => '2021-01-12 08:00:12',
],
];
}
Expand Down

0 comments on commit fae161a

Please sign in to comment.