@@ -55,7 +55,7 @@ The simplest ``TypeTestCase`` implementation looks like the following::
5555 ];
5656
5757 $model = new TestObject();
58- // $formData will retrieve data from the form submission; pass it as the second argument
58+ // $model will retrieve data from the form submission; pass it as the second argument
5959 $form = $this->factory->create(TestedType::class, $model);
6060
6161 $expected = new TestObject();
@@ -67,7 +67,7 @@ The simplest ``TypeTestCase`` implementation looks like the following::
6767 // This check ensures there are no transformation failures
6868 $this->assertTrue($form->isSynchronized());
6969
70- // check that $formData was modified as expected when the form was submitted
70+ // check that $model was modified as expected when the form was submitted
7171 $this->assertEquals($expected, $model);
7272 }
7373
@@ -88,7 +88,7 @@ The simplest ``TypeTestCase`` implementation looks like the following::
8888So, what does it test? Here comes a detailed explanation.
8989
9090First you verify if the ``FormType `` compiles. This includes basic class
91- inheritance, the ``buildForm() `` function and options resolution. This should
91+ inheritance, the ``buildForm() `` method and options resolution. This should
9292be the first test you write::
9393
9494 $form = $this->factory->create(TestedType::class, $formData);
0 commit comments