aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-12-11 14:42:48 -0800
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-12-11 14:42:48 -0800
commit99eae7f3cf7906dbff9db9984da8c457871a3c49 (patch)
tree3369be2e2c9e2ea9a9df0cd783deddb129da1495 /actionview
parent59b7203180edd2424f4b78fc934e92cff0d391fa (diff)
parentb6251d626edbd1ddb6bc5b5cf51b4ff4a3ce23f2 (diff)
downloadrails-99eae7f3cf7906dbff9db9984da8c457871a3c49.tar.gz
rails-99eae7f3cf7906dbff9db9984da8c457871a3c49.tar.bz2
rails-99eae7f3cf7906dbff9db9984da8c457871a3c49.zip
Merge pull request #13280 from waynn/patch-4
value is "disabled" not "disable"
Diffstat (limited to 'actionview')
-rw-r--r--actionview/test/template/form_collections_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/template/form_collections_helper_test.rb b/actionview/test/template/form_collections_helper_test.rb
index 68c83f2059..4c17899c46 100644
--- a/actionview/test/template/form_collections_helper_test.rb
+++ b/actionview/test/template/form_collections_helper_test.rb
@@ -60,7 +60,7 @@ class FormCollectionsHelperTest < ActionView::TestCase
assert_no_select 'input[type=radio][value=other][disabled=disabled]'
end
- test 'collection radio accepts single disable item' do
+ test 'collection radio accepts single disabled item' do
collection = [[1, true], [0, false]]
with_collection_radio_buttons :user, :active, collection, :last, :first, :disabled => true