aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorHussein Morsy <hussein@morsy.de>2010-05-16 14:50:08 +0200
committerJosé Valim <jose.valim@gmail.com>2010-05-16 15:00:35 +0200
commit4ea48f2a9880508a4967be011345fc05570f44c4 (patch)
tree7ad5c55bc33d0d1425c889ed0d9b353999b402d0 /actionpack
parent6cabc9a61fd78a7cbc06d083a59cb252794e5a97 (diff)
downloadrails-4ea48f2a9880508a4967be011345fc05570f44c4.tar.gz
rails-4ea48f2a9880508a4967be011345fc05570f44c4.tar.bz2
rails-4ea48f2a9880508a4967be011345fc05570f44c4.zip
Fixed 1 failure in ActionPack testsuite [#4613 state:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/template/form_helper_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb
index 3893d152a2..d1e1338a17 100644
--- a/actionpack/test/template/form_helper_test.rb
+++ b/actionpack/test/template/form_helper_test.rb
@@ -449,8 +449,8 @@ class FormHelperTest < ActionView::TestCase
text_area("post", "body", :id => nil)
assert_dom_equal check_box("post", "secret", "id" => nil),
check_box("post", "secret", :id => nil)
- assert_dom_equal radio_button("post", "secret", "id" => nil),
- radio_button("post", "secret", :id => nil)
+ assert_dom_equal radio_button("post", "secret", "0", "id" => nil),
+ radio_button("post", "secret", "0", :id => nil)
end
def test_index