From 24a66b383d8051ae0d7afd43f0b94c31e60ad50d Mon Sep 17 00:00:00 2001 From: Qiang Xue Date: Fri, 9 Aug 2013 09:50:19 -0400 Subject: [PATCH] test break fix. --- tests/unit/framework/helpers/HtmlTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/framework/helpers/HtmlTest.php b/tests/unit/framework/helpers/HtmlTest.php index 6739da6..3a35bd2 100644 --- a/tests/unit/framework/helpers/HtmlTest.php +++ b/tests/unit/framework/helpers/HtmlTest.php @@ -211,13 +211,13 @@ class HtmlTest extends TestCase $this->assertEquals('', Html::radio('test', true, array('class' => 'a', 'value' => null))); $this->assertEquals('', Html::radio('test', true, array('class' => 'a' , 'uncheck' => '0', 'value' => 2))); - $this->assertEquals('
', Html::radio('test', true, array( + $this->assertEquals('
', Html::radio('test', true, array( 'class' => 'a', 'value' => null, 'label' => 'ccc', 'labelOptions' => array('class' =>'bbb'), ))); - $this->assertEquals('
', Html::radio('test', true, array( + $this->assertEquals('
', Html::radio('test', true, array( 'class' => 'a', 'uncheck' => '0', 'label' => 'ccc',