aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaynn Lue <WLGades@gmail.com>2014-01-13 14:23:58 -0800
committerWaynn Lue <WLGades@gmail.com>2014-01-13 14:23:58 -0800
commitfd68adc8a9b5d3c917542d9b0c22359715e04c8a (patch)
treed2083e0b98d8943f0c13c51562f7b2620fff7010
parent7524a9166c0fbcb8d0fb720058c658245919e8be (diff)
downloadrails-fd68adc8a9b5d3c917542d9b0c22359715e04c8a.tar.gz
rails-fd68adc8a9b5d3c917542d9b0c22359715e04c8a.tar.bz2
rails-fd68adc8a9b5d3c917542d9b0c22359715e04c8a.zip
"serie" => "series"
-rw-r--r--actionview/test/template/form_collections_helper_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/test/template/form_collections_helper_test.rb b/actionview/test/template/form_collections_helper_test.rb
index 7a62b9d907..18632465db 100644
--- a/actionview/test/template/form_collections_helper_test.rb
+++ b/actionview/test/template/form_collections_helper_test.rb
@@ -182,7 +182,7 @@ class FormCollectionsHelperTest < ActionView::TestCase
end
# COLLECTION CHECK BOXES
- test 'collection check boxes accepts a collection and generate a serie of checkboxes for value method' do
+ test 'collection check boxes accepts a collection and generate a series of checkboxes for value method' do
collection = [Category.new(1, 'Category 1'), Category.new(2, 'Category 2')]
with_collection_check_boxes :user, :category_ids, collection, :id, :name
@@ -204,7 +204,7 @@ class FormCollectionsHelperTest < ActionView::TestCase
assert_select "input[type=hidden][name='user[other_category_ids][]'][value=]", :count => 1
end
- test 'collection check boxes accepts a collection and generate a serie of checkboxes with labels for label method' do
+ test 'collection check boxes accepts a collection and generate a series of checkboxes with labels for label method' do
collection = [Category.new(1, 'Category 1'), Category.new(2, 'Category 2')]
with_collection_check_boxes :user, :category_ids, collection, :id, :name