@@ -148,12 +148,12 @@ public function testConstructorHandlesFormValues()
148
148
public function testMultiValuedFields ()
149
149
{
150
150
$ form = $ this ->createForm ('<form>
151
- <input type="text" name="foo[4]" value="foo" disabled="disabled" />
152
- <input type="text" name="foo" value="foo" disabled="disabled" />
153
- <input type="text" name="foo[2]" value="foo" disabled="disabled" />
154
- <input type="text" name="foo[]" value="foo" disabled="disabled" />
155
- <input type="text" name="bar[foo][]" value="foo" disabled="disabled" />
156
- <input type="text" name="bar[foo][foobar]" value="foo" disabled="disabled" />
151
+ <input type="text" name="foo[4]" value="foo" />
152
+ <input type="text" name="foo" value="foo" />
153
+ <input type="text" name="foo[2]" value="foo" />
154
+ <input type="text" name="foo[]" value="foo" />
155
+ <input type="text" name="bar[foo][]" value="foo" />
156
+ <input type="text" name="bar[foo][foobar]" value="foo" />
157
157
<input type="submit" />
158
158
</form>
159
159
' );
@@ -216,10 +216,10 @@ public function provideInitializeValues()
216
216
[],
217
217
],
218
218
[
219
- 'takes into account disabled input fields ' ,
219
+ 'skips disabled input fields ' ,
220
220
'<input type="text" name="foo" value="foo" disabled="disabled" />
221
221
<input type="submit" /> ' ,
222
- [' foo ' => [ ' InputFormField ' , ' foo ' ] ],
222
+ [],
223
223
],
224
224
[
225
225
'appends the submitted button value ' ,
0 commit comments