Skip to content

Commit 27135bf

Browse files
committed
Fix test case for CakePHP 2.4.4.
1 parent a3abe59 commit 27135bf

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Test/Case/View/Helper/BoostCakeFormHelperTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -306,12 +306,12 @@ public function testRadio() {
306306
'Name',
307307
'/legend',
308308
array('input' => array('type' => 'hidden', 'name' => 'data[name]', 'id' => 'name_', 'value' => '')),
309-
array('label' => array('for' => 'NameOne', 'class' => 'radio')),
310-
array('input' => array('name' => 'data[name]', 'type' => 'radio', 'value' => 'one', 'id' => 'NameOne')),
309+
array('label' => array('for' => 'nameOne', 'class' => 'radio')),
310+
array('input' => array('name' => 'data[name]', 'type' => 'radio', 'value' => 'one', 'id' => 'nameOne')),
311311
' This is one',
312312
'/label',
313-
array('label' => array('for' => 'NameTwo', 'class' => 'radio')),
314-
array('input' => array('name' => 'data[name]', 'type' => 'radio', 'value' => 'two', 'id' => 'NameTwo')),
313+
array('label' => array('for' => 'nameTwo', 'class' => 'radio')),
314+
array('input' => array('name' => 'data[name]', 'type' => 'radio', 'value' => 'two', 'id' => 'nameTwo')),
315315
' This is two',
316316
'/label',
317317
'/fieldset',

0 commit comments

Comments
 (0)