aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorWaynn Lue <WLGades@gmail.com>2013-12-11 15:08:53 -0800
committerWaynn Lue <WLGades@gmail.com>2013-12-11 15:08:53 -0800
commit93de7ff85662243e66682424704430c0e7e7aff5 (patch)
treebdce712e31cb6493928ae30d97980206fdfdad43 /actionview
parent99eae7f3cf7906dbff9db9984da8c457871a3c49 (diff)
downloadrails-93de7ff85662243e66682424704430c0e7e7aff5.tar.gz
rails-93de7ff85662243e66682424704430c0e7e7aff5.tar.bz2
rails-93de7ff85662243e66682424704430c0e7e7aff5.zip
test description uses "disable" when it should be "disabled"
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 4c17899c46..7a62b9d907 100644
--- a/actionview/test/template/form_collections_helper_test.rb
+++ b/actionview/test/template/form_collections_helper_test.rb
@@ -300,7 +300,7 @@ class FormCollectionsHelperTest < ActionView::TestCase
assert_no_select 'input[type=checkbox][value=2][disabled=disabled]'
end
- test 'collection check boxes accepts single disable item' do
+ test 'collection check boxes accepts single disabled item' do
collection = (1..3).map{|i| [i, "Category #{i}"] }
with_collection_check_boxes :user, :category_ids, collection, :first, :last, :disabled => 1