Fix PHPCS error.

This commit is contained in:
mark_story 2015-01-09 15:32:33 -05:00
parent 98909fb465
commit 03d8c40d99

View file

@ -1348,7 +1348,7 @@ class FormHelperTest extends CakeTestCase {
$this->Form->radio('Test.some', $options, array( $this->Form->radio('Test.some', $options, array(
'disabled' => array('option1') 'disabled' => array('option1')
)); ));
$expected = array('Test.test', 'Test.all' => '', 'Test.some'); $expected = array('Test.test', 'Test.all' => '', 'Test.some');
$this->assertEquals($expected, $this->Form->fields); $this->assertEquals($expected, $this->Form->fields);
} }