8000 [Form] Fixed failing tests for DateTimeToStringTransformer. · symfony/symfony@81967f6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 81967f6

Browse files
committed
[Form] Fixed failing tests for DateTi EBA8 meToStringTransformer.
Tests were only failing at the end of the month. PHP uses current day if it is not passed. Since February was used in the test cases, date was being moved to the next month (February has less days than other months).
1 parent 9b71f30 commit 81967f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToStringTransformerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function dataProvider()
2323
array('Y-m-d H:i', '2010-02-03 16:05', '2010-02-03 16:05:00 UTC'),
2424
array('Y-m-d H', '2010-02-03 16', '2010-02-03 16:00:00 UTC'),
2525
array('Y-m-d', '2010-02-03', '2010-02-03 00:00:00 UTC'),
26-
array('Y-m', '2010-02', '2010-02-01 00:00:00 UTC'),
26+
array('Y-m', '2010-12', '2010-12-01 00:00:00 UTC'),
2727
array('Y', '2010', '2010-01-01 00:00:00 UTC'),
2828
array('d-m-Y', '03-02-2010', '2010-02-03 00:00:00 UTC'),
2929
array('H:i:s', '16:05:06', '1970-01-01 16:05:06 UTC'),

0 commit comments

Comments
 (0)
0