File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Original file line number Diff line number Diff line change @@ -42,9 +42,10 @@ edition. To do so:
42
42
``git clone git://github.com/YOUR-GITHUB-USERNAME/symfony-standard.git ``
43
43
#. Browse the project and create a new branch (e.g. ``issue_23567 ``,
44
44
``reproduce_23657 ``, etc.)
45
+ #. Add and commit the changes generated by Symfony.
45
46
#. Now you must add the minimum amount of code to reproduce the bug. This is the
46
47
trickiest part and it's explained a bit more later.
47
- #. Add, commit and push all your changes.
48
+ #. Add, commit and push all your own changes.
48
49
#. Add a comment in your original issue report to share the URL of your forked
49
50
project (e.g. ``https://github.com/YOUR-GITHUB-USERNAME/symfony-standard/tree/issue_23567 ``)
50
51
and, if necessary, explain the steps to reproduce (e.g. "browse this URL",
Original file line number Diff line number Diff line change @@ -57,8 +57,9 @@ The simplest ``TypeTestCase`` implementation looks like the following::
57
57
// submit the data to the form directly
58
58
$form->submit($formData);
59
59
60
- $objectToCompare = $form->getData();
61
60
$this->assertTrue($form->isSynchronized());
61
+
62
+ // check that $objectToCompare was modified as expected when the form was submitted
62
63
$this->assertEquals($object, $objectToCompare);
63
64
64
65
$view = $form->createView();
You can’t perform that action at this time.
0 commit comments