8000 [Form] Replace use of bind() with submit() in a test. · symfony/symfony@5007b41 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5007b41

Browse files
co 8000 mmitted
[Form] Replace use of bind() with submit() in a test.
1 parent 494e300 commit 5007b41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Form/Tests/SimpleFormTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public function testFalseIsConvertedToNull()
134134
$config->addEventListener(FormEvents::PRE_SUBMIT, array($mock, 'preSubmit'));
135135
$form = new Form($config);
136136

137-
$form->bind(false);
137+
$form->submit(false);
138138

139139
$this->assertTrue($form->isValid());
140140
$this->assertNull($form->getData());

0 commit comments

Comments
 (0)
0