diff options
author | Waynn Lue <WLGades@gmail.com> | 2013-12-11 14:30:41 -0800 |
---|---|---|
committer | Waynn Lue <WLGades@gmail.com> | 2013-12-11 14:30:41 -0800 |
commit | b6251d626edbd1ddb6bc5b5cf51b4ff4a3ce23f2 (patch) | |
tree | 3a4f17c23785d860634035ec75b92adec2b54f17 | |
parent | 6deb0a09c1e9b2d7c1d603978d26fd13aec50c83 (diff) | |
download | rails-b6251d626edbd1ddb6bc5b5cf51b4ff4a3ce23f2.tar.gz rails-b6251d626edbd1ddb6bc5b5cf51b4ff4a3ce23f2.tar.bz2 rails-b6251d626edbd1ddb6bc5b5cf51b4ff4a3ce23f2.zip |
value is "disabled" not "disable"
-rw-r--r-- | actionview/test/template/form_collections_helper_test.rb | 2 |
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 |