8000 [Form] Silence a legacy test. by jakzal · Pull Request #13801 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Form] Silence a legacy test. #13801

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 1 commit into from
Closed
Changes from all commits
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
[Form] Silence a legacy test.
  • Loading branch information
jakzal committed Feb 26, 2015
commit 772d54a5e43724df9607c9fe90b054eb909484fd
4 changes: 3 additions & 1 deletion src/Symfony/Component/Form/Tests/SimpleFormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,10 @@ public function testDataIsInitializedFromSubmit()
}

// https://github.com/symfony/symfony/pull/7789
public function testFalseIsConvertedToNull()
public function testLegacyFalseIsConvertedToNull()
{
$this->iniSet('error_reporting', -1 & ~E_USER_DEPRECATED);

$mock = $this->getMockBuilder('\stdClass')
->setMethods(array('preSubmit'))
->getMock();
Expand Down
0