8000 [Form] Fix DateType for 32bits computers. by WedgeSama · Pull Request #9314 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Form] Fix DateType for 32bits computers. #9314

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix test case
  • Loading branch information
WedgeSama committed Nov 14, 2013
commit 5925e037200208d600bf814205d1444e85a9905b
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ public function testDayErrorsBubbleUp($widget)
public function testYearsFor32BitsMachines()
{
if (4 !== PHP_INT_SIZE) {
$testCase->markTestSkipped(
$this->markTestSkipped(
'PHP must be compiled in 32 bit mode to run this test');
}

Expand Down
0